├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── client │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ └── src │ │ ├── App.css │ │ ├── App.js │ │ ├── components │ │ ├── ChooseType.js │ │ ├── Header.js │ │ ├── NLSpecificTool.js │ │ ├── ResultView.js │ │ ├── VegaLiteView.js │ │ └── WelcomePage.js │ │ ├── index.js │ │ └── redux │ │ ├── store.js │ │ └── textSlice.js └── server │ ├── data │ ├── LICENSE │ ├── chart │ │ ├── 0.vl.json │ │ ├── 1.vl.json │ │ ├── 2.vl.json │ │ ├── 3.vl.json │ │ ├── 4.vl.json │ │ ├── 5.vl.json │ │ ├── 6.vl.json │ │ ├── 7.vl.json │ │ ├── 8.vl.json │ │ ├── 9.vl.json │ │ └── sample.vl.json │ ├── process.py │ ├── table.pdf │ └── tech │ │ ├── 0.csv │ │ ├── 1.csv │ │ ├── 2.csv │ │ ├── 3.csv │ │ ├── 4.csv │ │ ├── 5.csv │ │ ├── 6.csv │ │ ├── 7.csv │ │ ├── 8.csv │ │ └── 9.csv │ ├── prompt.py │ ├── server.py │ └── utils.py ├── benchmark ├── LICENSE-chartseer ├── LICENSE-data2vis ├── LICENSE-nvbench ├── LICENSE-vega-lite.txt ├── VisQA-release │ ├── .gitignore │ ├── data │ │ ├── chart-list.json │ │ ├── d3 │ │ │ ├── data │ │ │ │ ├── 2756_0.csv │ │ │ │ ├── 2998_0.csv │ │ │ │ ├── 3001_0.csv │ │ │ │ ├── 3001_1.csv │ │ │ │ ├── 4702_0.csv │ │ │ │ ├── 7920_0.csv │ │ │ │ ├── 8125_1.csv │ │ │ │ ├── 8125_2.csv │ │ │ │ ├── 8125_4.csv │ │ │ │ ├── 8126_0.csv │ │ │ │ └── multi_line.csv │ │ │ └── specs │ │ │ │ ├── 2756_0.json │ │ │ │ ├── 2998_0.json │ │ │ │ ├── 3001_0.json │ │ │ │ ├── 3001_1.json │ │ │ │ ├── 4702_0.json │ │ │ │ ├── 7920_0.json │ │ │ │ ├── 8125_1.json │ │ │ │ ├── 8125_2.json │ │ │ │ ├── 8125_4.json │ │ │ │ ├── 8126_0.json │ │ │ │ └── multi_line.json │ │ ├── kong │ │ │ ├── data │ │ │ │ ├── 15.csv │ │ │ │ ├── 17.csv │ │ │ │ ├── 18.csv │ │ │ │ ├── 27.csv │ │ │ │ ├── 3.csv │ │ │ │ ├── 30.csv │ │ │ │ ├── 5.csv │ │ │ │ ├── 50.csv │ │ │ │ ├── 53.csv │ │ │ │ ├── 54.csv │ │ │ │ ├── 55.csv │ │ │ │ ├── 65.csv │ │ │ │ ├── 68.csv │ │ │ │ ├── 69.csv │ │ │ │ ├── 70.csv │ │ │ │ ├── 71.csv │ │ │ │ ├── 73.csv │ │ │ │ ├── 74.csv │ │ │ │ ├── 75.csv │ │ │ │ ├── 76.csv │ │ │ │ └── 77.csv │ │ │ └── specs │ │ │ │ ├── 15.json │ │ │ │ ├── 17.json │ │ │ │ ├── 18.json │ │ │ │ ├── 27.json │ │ │ │ ├── 3.json │ │ │ │ ├── 30.json │ │ │ │ ├── 5.json │ │ │ │ ├── 50.json │ │ │ │ ├── 53.json │ │ │ │ ├── 54.json │ │ │ │ ├── 55.json │ │ │ │ ├── 65.json │ │ │ │ ├── 68.json │ │ │ │ ├── 69.json │ │ │ │ ├── 70.json │ │ │ │ ├── 71.json │ │ │ │ ├── 73.json │ │ │ │ ├── 74.json │ │ │ │ ├── 75.json │ │ │ │ ├── 76.json │ │ │ │ └── 77.json │ │ ├── qadata.json │ │ ├── vega-lite-example-gallery │ │ │ ├── data │ │ │ │ ├── barley.csv │ │ │ │ ├── barley.json │ │ │ │ ├── convert.py │ │ │ │ ├── population.csv │ │ │ │ ├── population.json │ │ │ │ ├── seattle-weather.csv │ │ │ │ └── stocks.csv │ │ │ └── specs │ │ │ │ ├── bar_aggregate.json │ │ │ │ ├── bar_grouped.json │ │ │ │ ├── line.json │ │ │ │ ├── line_color.json │ │ │ │ ├── stacked_bar_h.json │ │ │ │ └── stacked_bar_weather.json │ │ ├── wikitables-200 │ │ │ ├── data │ │ │ │ ├── 10.csv │ │ │ │ ├── 25.csv │ │ │ │ ├── 28.csv │ │ │ │ └── 33.csv │ │ │ └── specs │ │ │ │ ├── 10_0.json │ │ │ │ ├── 25_0.json │ │ │ │ ├── 28_0.json │ │ │ │ ├── 33_0.json │ │ │ │ └── 33_1.json │ │ ├── wikitables-201 │ │ │ ├── data │ │ │ │ ├── 11.csv │ │ │ │ ├── 46.csv │ │ │ │ └── 8.csv │ │ │ └── specs │ │ │ │ ├── 11.json │ │ │ │ ├── 46.json │ │ │ │ ├── 8_0.json │ │ │ │ └── 8_1.json │ │ └── wikitables-202 │ │ │ ├── data │ │ │ ├── 271.csv │ │ │ ├── 48.csv │ │ │ └── 59.csv │ │ │ └── specs │ │ │ ├── 271_0.json │ │ │ ├── 271_1.json │ │ │ ├── 48.json │ │ │ ├── 59_0.json │ │ │ └── 59_1.json │ └── readme.md ├── chartseer │ ├── .gitignore │ ├── jsonfiles │ │ ├── output_0000.json │ │ ├── output_0001.json │ │ ├── output_0002.json │ │ ├── output_0003.json │ │ ├── output_0004.json │ │ ├── output_0005.json │ │ ├── output_0006.json │ │ ├── output_0007.json │ │ ├── output_0008.json │ │ ├── output_0009.json │ │ ├── output_0010.json │ │ ├── output_0011.json │ │ ├── output_0012.json │ │ ├── output_0013.json │ │ ├── output_0014.json │ │ ├── output_0015.json │ │ ├── output_0016.json │ │ ├── output_0017.json │ │ ├── output_0018.json │ │ ├── output_0019.json │ │ ├── output_0020.json │ │ ├── output_0021.json │ │ ├── output_0022.json │ │ ├── output_0023.json │ │ ├── output_0024.json │ │ ├── output_0025.json │ │ ├── output_0026.json │ │ ├── output_0027.json │ │ ├── output_0028.json │ │ ├── output_0029.json │ │ ├── output_0030.json │ │ ├── output_0031.json │ │ ├── output_0032.json │ │ ├── output_0033.json │ │ ├── output_0034.json │ │ ├── output_0035.json │ │ ├── output_0036.json │ │ ├── output_0037.json │ │ ├── output_0038.json │ │ ├── output_0039.json │ │ ├── output_0040.json │ │ ├── output_0041.json │ │ ├── output_0042.json │ │ ├── output_0043.json │ │ ├── output_0044.json │ │ ├── output_0045.json │ │ ├── output_0046.json │ │ ├── output_0047.json │ │ ├── output_0048.json │ │ ├── output_0049.json │ │ ├── output_0050.json │ │ ├── output_0051.json │ │ ├── output_0052.json │ │ ├── output_0053.json │ │ ├── output_0054.json │ │ ├── output_0055.json │ │ ├── output_0056.json │ │ ├── output_0057.json │ │ ├── output_0058.json │ │ ├── output_0059.json │ │ ├── output_0060.json │ │ ├── output_0061.json │ │ ├── output_0062.json │ │ ├── output_0063.json │ │ ├── output_0064.json │ │ ├── output_0065.json │ │ ├── output_0066.json │ │ ├── output_0067.json │ │ ├── output_0068.json │ │ ├── output_0069.json │ │ ├── output_0070.json │ │ ├── output_0071.json │ │ ├── output_0072.json │ │ ├── output_0073.json │ │ ├── output_0074.json │ │ ├── output_0075.json │ │ ├── output_0076.json │ │ ├── output_0077.json │ │ ├── output_0078.json │ │ ├── output_0079.json │ │ ├── output_0080.json │ │ ├── output_0081.json │ │ ├── output_0082.json │ │ ├── output_0083.json │ │ ├── output_0084.json │ │ ├── output_0085.json │ │ ├── output_0086.json │ │ ├── output_0087.json │ │ ├── output_0088.json │ │ ├── output_0089.json │ │ ├── output_0090.json │ │ ├── output_0091.json │ │ ├── output_0092.json │ │ ├── output_0093.json │ │ ├── output_0094.json │ │ ├── output_0095.json │ │ ├── output_0096.json │ │ ├── output_0097.json │ │ ├── output_0098.json │ │ ├── output_0099.json │ │ ├── output_0100.json │ │ ├── output_0101.json │ │ ├── output_0102.json │ │ ├── output_0103.json │ │ ├── output_0104.json │ │ ├── output_0105.json │ │ ├── output_0106.json │ │ ├── output_0107.json │ │ ├── output_0108.json │ │ ├── output_0109.json │ │ ├── output_0110.json │ │ ├── output_0111.json │ │ ├── output_0112.json │ │ ├── output_0113.json │ │ ├── output_0114.json │ │ ├── output_0115.json │ │ ├── output_0116.json │ │ ├── output_0117.json │ │ ├── output_0118.json │ │ ├── output_0119.json │ │ ├── output_0120.json │ │ ├── output_0121.json │ │ ├── output_0122.json │ │ ├── output_0123.json │ │ ├── output_0124.json │ │ ├── output_0125.json │ │ ├── output_0126.json │ │ ├── output_0127.json │ │ ├── output_0128.json │ │ ├── output_0129.json │ │ ├── output_0130.json │ │ ├── output_0131.json │ │ ├── output_0132.json │ │ ├── output_0133.json │ │ ├── output_0134.json │ │ ├── output_0135.json │ │ ├── output_0136.json │ │ ├── output_0137.json │ │ ├── output_0138.json │ │ ├── output_0139.json │ │ ├── output_0140.json │ │ ├── output_0141.json │ │ ├── output_0142.json │ │ ├── output_0143.json │ │ ├── output_0144.json │ │ ├── output_0145.json │ │ ├── output_0146.json │ │ ├── output_0147.json │ │ ├── output_0148.json │ │ ├── output_0149.json │ │ ├── output_0150.json │ │ ├── output_0151.json │ │ ├── output_0152.json │ │ ├── output_0153.json │ │ ├── output_0154.json │ │ ├── output_0155.json │ │ ├── output_0156.json │ │ ├── output_0157.json │ │ ├── output_0158.json │ │ ├── output_0159.json │ │ ├── output_0160.json │ │ ├── output_0161.json │ │ ├── output_0162.json │ │ ├── output_0163.json │ │ ├── output_0164.json │ │ ├── output_0165.json │ │ ├── output_0166.json │ │ ├── output_0167.json │ │ ├── output_0168.json │ │ ├── output_0169.json │ │ ├── output_0170.json │ │ ├── output_0171.json │ │ ├── output_0172.json │ │ ├── output_0173.json │ │ ├── output_0174.json │ │ ├── output_0175.json │ │ ├── output_0176.json │ │ ├── output_0177.json │ │ ├── output_0178.json │ │ ├── output_0179.json │ │ ├── output_0180.json │ │ ├── output_0181.json │ │ ├── output_0182.json │ │ ├── output_0183.json │ │ ├── output_0184.json │ │ ├── output_0185.json │ │ ├── output_0186.json │ │ ├── output_0187.json │ │ ├── output_0188.json │ │ ├── output_0189.json │ │ ├── output_0190.json │ │ ├── output_0191.json │ │ ├── output_0192.json │ │ ├── output_0193.json │ │ ├── output_0194.json │ │ ├── output_0195.json │ │ ├── output_0196.json │ │ ├── output_0197.json │ │ ├── output_0198.json │ │ ├── output_0199.json │ │ ├── output_0200.json │ │ ├── output_0201.json │ │ ├── output_0202.json │ │ ├── output_0203.json │ │ ├── output_0204.json │ │ ├── output_0205.json │ │ ├── output_0206.json │ │ ├── output_0207.json │ │ ├── output_0208.json │ │ ├── output_0209.json │ │ ├── output_0210.json │ │ ├── output_0211.json │ │ ├── output_0212.json │ │ ├── output_0213.json │ │ ├── output_0214.json │ │ ├── output_0215.json │ │ ├── output_0216.json │ │ ├── output_0217.json │ │ ├── output_0218.json │ │ ├── output_0219.json │ │ ├── output_0220.json │ │ ├── output_0221.json │ │ ├── output_0222.json │ │ ├── output_0223.json │ │ ├── output_0224.json │ │ ├── output_0225.json │ │ ├── output_0226.json │ │ ├── output_0227.json │ │ ├── output_0228.json │ │ ├── output_0229.json │ │ ├── output_0230.json │ │ ├── output_0231.json │ │ ├── output_0232.json │ │ ├── output_0233.json │ │ ├── output_0234.json │ │ ├── output_0235.json │ │ ├── output_0236.json │ │ ├── output_0237.json │ │ ├── output_0238.json │ │ ├── output_0239.json │ │ ├── output_0240.json │ │ ├── output_0241.json │ │ ├── output_0242.json │ │ ├── output_0243.json │ │ ├── output_0244.json │ │ ├── output_0245.json │ │ ├── output_0246.json │ │ ├── output_0247.json │ │ ├── output_0248.json │ │ ├── output_0249.json │ │ ├── output_0250.json │ │ ├── output_0251.json │ │ ├── output_0252.json │ │ ├── output_0253.json │ │ ├── output_0254.json │ │ ├── output_0255.json │ │ ├── output_0256.json │ │ ├── output_0257.json │ │ ├── output_0258.json │ │ ├── output_0259.json │ │ ├── output_0260.json │ │ ├── output_0261.json │ │ ├── output_0262.json │ │ ├── output_0263.json │ │ ├── output_0264.json │ │ ├── output_0265.json │ │ ├── output_0266.json │ │ ├── output_0267.json │ │ ├── output_0268.json │ │ ├── output_0269.json │ │ ├── output_0270.json │ │ ├── output_0271.json │ │ ├── output_0272.json │ │ ├── output_0273.json │ │ ├── output_0274.json │ │ ├── output_0275.json │ │ ├── output_0276.json │ │ ├── output_0277.json │ │ ├── output_0278.json │ │ ├── output_0279.json │ │ ├── output_0280.json │ │ ├── output_0281.json │ │ ├── output_0282.json │ │ ├── output_0283.json │ │ ├── output_0284.json │ │ ├── output_0285.json │ │ ├── output_0286.json │ │ ├── output_0287.json │ │ ├── output_0288.json │ │ ├── output_0289.json │ │ ├── output_0290.json │ │ ├── output_0291.json │ │ ├── output_0292.json │ │ ├── output_0293.json │ │ ├── output_0294.json │ │ ├── output_0295.json │ │ ├── output_0296.json │ │ ├── output_0297.json │ │ ├── output_0298.json │ │ ├── output_0299.json │ │ ├── output_0300.json │ │ ├── output_0301.json │ │ ├── output_0302.json │ │ ├── output_0303.json │ │ ├── output_0304.json │ │ ├── output_0305.json │ │ ├── output_0306.json │ │ ├── output_0307.json │ │ ├── output_0308.json │ │ ├── output_0309.json │ │ ├── output_0310.json │ │ ├── output_0311.json │ │ ├── output_0312.json │ │ ├── output_0313.json │ │ ├── output_0314.json │ │ ├── output_0315.json │ │ ├── output_0316.json │ │ ├── output_0317.json │ │ ├── output_0318.json │ │ ├── output_0319.json │ │ ├── output_0320.json │ │ ├── output_0321.json │ │ ├── output_0322.json │ │ ├── output_0323.json │ │ ├── output_0324.json │ │ ├── output_0325.json │ │ ├── output_0326.json │ │ ├── output_0327.json │ │ ├── output_0328.json │ │ ├── output_0329.json │ │ ├── output_0330.json │ │ ├── output_0331.json │ │ ├── output_0332.json │ │ ├── output_0333.json │ │ ├── output_0334.json │ │ ├── output_0335.json │ │ ├── output_0336.json │ │ ├── output_0337.json │ │ ├── output_0338.json │ │ ├── output_0339.json │ │ ├── output_0340.json │ │ ├── output_0341.json │ │ ├── output_0342.json │ │ ├── output_0343.json │ │ ├── output_0344.json │ │ ├── output_0345.json │ │ ├── output_0346.json │ │ ├── output_0347.json │ │ ├── output_0348.json │ │ ├── output_0349.json │ │ ├── output_0350.json │ │ ├── output_0351.json │ │ ├── output_0352.json │ │ ├── output_0353.json │ │ ├── output_0354.json │ │ ├── output_0355.json │ │ ├── output_0356.json │ │ ├── output_0357.json │ │ ├── output_0358.json │ │ ├── output_0359.json │ │ ├── output_0360.json │ │ ├── output_0361.json │ │ ├── output_0362.json │ │ ├── output_0363.json │ │ ├── output_0364.json │ │ ├── output_0365.json │ │ ├── output_0366.json │ │ ├── output_0367.json │ │ ├── output_0368.json │ │ ├── output_0369.json │ │ ├── output_0370.json │ │ ├── output_0371.json │ │ ├── output_0372.json │ │ ├── output_0373.json │ │ ├── output_0374.json │ │ ├── output_0375.json │ │ ├── output_0376.json │ │ ├── output_0377.json │ │ ├── output_0378.json │ │ ├── output_0379.json │ │ ├── output_0380.json │ │ ├── output_0381.json │ │ ├── output_0382.json │ │ ├── output_0383.json │ │ ├── output_0384.json │ │ ├── output_0385.json │ │ ├── output_0386.json │ │ ├── output_0387.json │ │ ├── output_0388.json │ │ ├── output_0389.json │ │ ├── output_0390.json │ │ ├── output_0391.json │ │ ├── output_0392.json │ │ ├── output_0393.json │ │ ├── output_0394.json │ │ ├── output_0395.json │ │ ├── output_0396.json │ │ ├── output_0397.json │ │ ├── output_0398.json │ │ ├── output_0399.json │ │ ├── output_0400.json │ │ ├── output_0401.json │ │ ├── output_0402.json │ │ ├── output_0403.json │ │ ├── output_0404.json │ │ ├── output_0405.json │ │ ├── output_0406.json │ │ ├── output_0407.json │ │ ├── output_0408.json │ │ ├── output_0409.json │ │ ├── output_0410.json │ │ ├── output_0411.json │ │ ├── output_0412.json │ │ ├── output_0413.json │ │ ├── output_0414.json │ │ ├── output_0415.json │ │ ├── output_0416.json │ │ ├── output_0417.json │ │ ├── output_0418.json │ │ ├── output_0419.json │ │ ├── output_0420.json │ │ ├── output_0421.json │ │ ├── output_0422.json │ │ ├── output_0423.json │ │ ├── output_0424.json │ │ ├── output_0425.json │ │ ├── output_0426.json │ │ ├── output_0427.json │ │ ├── output_0428.json │ │ ├── output_0429.json │ │ ├── output_0430.json │ │ ├── output_0431.json │ │ ├── output_0432.json │ │ ├── output_0433.json │ │ ├── output_0434.json │ │ ├── output_0435.json │ │ ├── output_0436.json │ │ ├── output_0437.json │ │ ├── output_0438.json │ │ ├── output_0439.json │ │ ├── output_0440.json │ │ ├── output_0441.json │ │ ├── output_0442.json │ │ ├── output_0443.json │ │ ├── output_0444.json │ │ ├── output_0445.json │ │ ├── output_0446.json │ │ ├── output_0447.json │ │ ├── output_0448.json │ │ ├── output_0449.json │ │ ├── output_0450.json │ │ ├── output_0451.json │ │ ├── output_0452.json │ │ ├── output_0453.json │ │ ├── output_0454.json │ │ ├── output_0455.json │ │ ├── output_0456.json │ │ ├── output_0457.json │ │ ├── output_0458.json │ │ ├── output_0459.json │ │ ├── output_0460.json │ │ ├── output_0461.json │ │ ├── output_0462.json │ │ ├── output_0463.json │ │ ├── output_0464.json │ │ ├── output_0465.json │ │ ├── output_0466.json │ │ ├── output_0467.json │ │ ├── output_0468.json │ │ ├── output_0469.json │ │ ├── output_0470.json │ │ ├── output_0471.json │ │ ├── output_0472.json │ │ ├── output_0473.json │ │ ├── output_0474.json │ │ ├── output_0475.json │ │ ├── output_0476.json │ │ ├── output_0477.json │ │ ├── output_0478.json │ │ ├── output_0479.json │ │ ├── output_0480.json │ │ ├── output_0481.json │ │ ├── output_0482.json │ │ ├── output_0483.json │ │ ├── output_0484.json │ │ ├── output_0485.json │ │ ├── output_0486.json │ │ ├── output_0487.json │ │ ├── output_0488.json │ │ ├── output_0489.json │ │ ├── output_0490.json │ │ ├── output_0491.json │ │ ├── output_0492.json │ │ ├── output_0493.json │ │ ├── output_0494.json │ │ ├── output_0495.json │ │ ├── output_0496.json │ │ ├── output_0497.json │ │ ├── output_0498.json │ │ ├── output_0499.json │ │ ├── output_0500.json │ │ ├── output_0501.json │ │ ├── output_0502.json │ │ ├── output_0503.json │ │ ├── output_0504.json │ │ ├── output_0505.json │ │ ├── output_0506.json │ │ ├── output_0507.json │ │ ├── output_0508.json │ │ ├── output_0509.json │ │ ├── output_0510.json │ │ ├── output_0511.json │ │ ├── output_0512.json │ │ ├── output_0513.json │ │ ├── output_0514.json │ │ ├── output_0515.json │ │ ├── output_0516.json │ │ ├── output_0517.json │ │ ├── output_0518.json │ │ ├── output_0519.json │ │ ├── output_0520.json │ │ ├── output_0521.json │ │ ├── output_0522.json │ │ ├── output_0523.json │ │ ├── output_0524.json │ │ ├── output_0525.json │ │ ├── output_0526.json │ │ ├── output_0527.json │ │ ├── output_0528.json │ │ ├── output_0529.json │ │ ├── output_0530.json │ │ ├── output_0531.json │ │ ├── output_0532.json │ │ ├── output_0533.json │ │ ├── output_0534.json │ │ ├── output_0535.json │ │ ├── output_0536.json │ │ ├── output_0537.json │ │ ├── output_0538.json │ │ ├── output_0539.json │ │ ├── output_0540.json │ │ ├── output_0541.json │ │ ├── output_0542.json │ │ ├── output_0543.json │ │ ├── output_0544.json │ │ ├── output_0545.json │ │ ├── output_0546.json │ │ ├── output_0547.json │ │ ├── output_0548.json │ │ ├── output_0549.json │ │ ├── output_0550.json │ │ ├── output_0551.json │ │ ├── output_0552.json │ │ ├── output_0553.json │ │ ├── output_0554.json │ │ ├── output_0555.json │ │ ├── output_0556.json │ │ ├── output_0557.json │ │ ├── output_0558.json │ │ ├── output_0559.json │ │ ├── output_0560.json │ │ ├── output_0561.json │ │ ├── output_0562.json │ │ ├── output_0563.json │ │ ├── output_0564.json │ │ ├── output_0565.json │ │ ├── output_0566.json │ │ ├── output_0567.json │ │ ├── output_0568.json │ │ ├── output_0569.json │ │ ├── output_0570.json │ │ ├── output_0571.json │ │ ├── output_0572.json │ │ ├── output_0573.json │ │ ├── output_0574.json │ │ ├── output_0575.json │ │ ├── output_0576.json │ │ ├── output_0577.json │ │ ├── output_0578.json │ │ ├── output_0579.json │ │ ├── output_0580.json │ │ ├── output_0581.json │ │ ├── output_0582.json │ │ ├── output_0583.json │ │ ├── output_0584.json │ │ ├── output_0585.json │ │ ├── output_0586.json │ │ ├── output_0587.json │ │ ├── output_0588.json │ │ ├── output_0589.json │ │ ├── output_0590.json │ │ ├── output_0591.json │ │ ├── output_0592.json │ │ ├── output_0593.json │ │ ├── output_0594.json │ │ ├── output_0595.json │ │ ├── output_0596.json │ │ ├── output_0597.json │ │ ├── output_0598.json │ │ ├── output_0599.json │ │ ├── output_0600.json │ │ ├── output_0601.json │ │ ├── output_0602.json │ │ ├── output_0603.json │ │ ├── output_0604.json │ │ ├── output_0605.json │ │ ├── output_0606.json │ │ ├── output_0607.json │ │ ├── output_0608.json │ │ ├── output_0609.json │ │ ├── output_0610.json │ │ ├── output_0611.json │ │ ├── output_0612.json │ │ ├── output_0613.json │ │ ├── output_0614.json │ │ ├── output_0615.json │ │ ├── output_0616.json │ │ ├── output_0617.json │ │ ├── output_0618.json │ │ ├── output_0619.json │ │ ├── output_0620.json │ │ ├── output_0621.json │ │ ├── output_0622.json │ │ ├── output_0623.json │ │ ├── output_0624.json │ │ ├── output_0625.json │ │ ├── output_0626.json │ │ ├── output_0627.json │ │ ├── output_0628.json │ │ ├── output_0629.json │ │ ├── output_0630.json │ │ ├── output_0631.json │ │ ├── output_0632.json │ │ ├── output_0633.json │ │ ├── output_0634.json │ │ ├── output_0635.json │ │ ├── output_0636.json │ │ ├── output_0637.json │ │ ├── output_0638.json │ │ ├── output_0639.json │ │ ├── output_0640.json │ │ ├── output_0641.json │ │ ├── output_0642.json │ │ ├── output_0643.json │ │ ├── output_0644.json │ │ ├── output_0645.json │ │ ├── output_0646.json │ │ ├── output_0647.json │ │ ├── output_0648.json │ │ ├── output_0649.json │ │ ├── output_0650.json │ │ ├── output_0651.json │ │ ├── output_0652.json │ │ ├── output_0653.json │ │ ├── output_0654.json │ │ ├── output_0655.json │ │ ├── output_0656.json │ │ ├── output_0657.json │ │ ├── output_0658.json │ │ ├── output_0659.json │ │ ├── output_0660.json │ │ ├── output_0661.json │ │ ├── output_0662.json │ │ ├── output_0663.json │ │ ├── output_0664.json │ │ ├── output_0665.json │ │ ├── output_0666.json │ │ ├── output_0667.json │ │ ├── output_0668.json │ │ ├── output_0669.json │ │ ├── output_0670.json │ │ ├── output_0671.json │ │ ├── output_0672.json │ │ ├── output_0673.json │ │ ├── output_0674.json │ │ ├── output_0675.json │ │ ├── output_0676.json │ │ ├── output_0677.json │ │ ├── output_0678.json │ │ ├── output_0679.json │ │ ├── output_0680.json │ │ ├── output_0681.json │ │ ├── output_0682.json │ │ ├── output_0683.json │ │ ├── output_0684.json │ │ ├── output_0685.json │ │ ├── output_0686.json │ │ ├── output_0687.json │ │ ├── output_0688.json │ │ ├── output_0689.json │ │ ├── output_0690.json │ │ ├── output_0691.json │ │ ├── output_0692.json │ │ ├── output_0693.json │ │ ├── output_0694.json │ │ ├── output_0695.json │ │ ├── output_0696.json │ │ ├── output_0697.json │ │ ├── output_0698.json │ │ ├── output_0699.json │ │ ├── output_0700.json │ │ ├── output_0701.json │ │ ├── output_0702.json │ │ ├── output_0703.json │ │ ├── output_0704.json │ │ ├── output_0705.json │ │ ├── output_0706.json │ │ ├── output_0707.json │ │ ├── output_0708.json │ │ ├── output_0709.json │ │ ├── output_0710.json │ │ ├── output_0711.json │ │ ├── output_0712.json │ │ ├── output_0713.json │ │ ├── output_0714.json │ │ ├── output_0715.json │ │ ├── output_0716.json │ │ ├── output_0717.json │ │ ├── output_0718.json │ │ ├── output_0719.json │ │ ├── output_0720.json │ │ ├── output_0721.json │ │ ├── output_0722.json │ │ ├── output_0723.json │ │ ├── output_0724.json │ │ ├── output_0725.json │ │ ├── output_0726.json │ │ ├── output_0727.json │ │ ├── output_0728.json │ │ ├── output_0729.json │ │ ├── output_0730.json │ │ ├── output_0731.json │ │ ├── output_0732.json │ │ ├── output_0733.json │ │ ├── output_0734.json │ │ ├── output_0735.json │ │ ├── output_0736.json │ │ ├── output_0737.json │ │ ├── output_0738.json │ │ ├── output_0739.json │ │ ├── output_0740.json │ │ ├── output_0741.json │ │ ├── output_0742.json │ │ ├── output_0743.json │ │ ├── output_0744.json │ │ ├── output_0745.json │ │ ├── output_0746.json │ │ ├── output_0747.json │ │ ├── output_0748.json │ │ ├── output_0749.json │ │ ├── output_0750.json │ │ ├── output_0751.json │ │ ├── output_0752.json │ │ ├── output_0753.json │ │ ├── output_0754.json │ │ ├── output_0755.json │ │ ├── output_0756.json │ │ ├── output_0757.json │ │ ├── output_0758.json │ │ ├── output_0759.json │ │ ├── output_0760.json │ │ ├── output_0761.json │ │ ├── output_0762.json │ │ ├── output_0763.json │ │ ├── output_0764.json │ │ ├── output_0765.json │ │ ├── output_0766.json │ │ ├── output_0767.json │ │ ├── output_0768.json │ │ ├── output_0769.json │ │ ├── output_0770.json │ │ ├── output_0771.json │ │ ├── output_0772.json │ │ ├── output_0773.json │ │ ├── output_0774.json │ │ ├── output_0775.json │ │ ├── output_0776.json │ │ ├── output_0777.json │ │ ├── output_0778.json │ │ ├── output_0779.json │ │ ├── output_0780.json │ │ ├── output_0781.json │ │ ├── output_0782.json │ │ ├── output_0783.json │ │ ├── output_0784.json │ │ ├── output_0785.json │ │ ├── output_0786.json │ │ ├── output_0787.json │ │ ├── output_0788.json │ │ ├── output_0789.json │ │ ├── output_0790.json │ │ ├── output_0791.json │ │ ├── output_0792.json │ │ ├── output_0793.json │ │ ├── output_0794.json │ │ ├── output_0795.json │ │ ├── output_0796.json │ │ ├── output_0797.json │ │ ├── output_0798.json │ │ ├── output_0799.json │ │ ├── output_0800.json │ │ ├── output_0801.json │ │ ├── output_0802.json │ │ ├── output_0803.json │ │ ├── output_0804.json │ │ ├── output_0805.json │ │ ├── output_0806.json │ │ ├── output_0807.json │ │ ├── output_0808.json │ │ ├── output_0809.json │ │ ├── output_0810.json │ │ ├── output_0811.json │ │ ├── output_0812.json │ │ ├── output_0813.json │ │ ├── output_0814.json │ │ ├── output_0815.json │ │ ├── output_0816.json │ │ ├── output_0817.json │ │ ├── output_0818.json │ │ ├── output_0819.json │ │ ├── output_0820.json │ │ ├── output_0821.json │ │ ├── output_0822.json │ │ ├── output_0823.json │ │ ├── output_0824.json │ │ ├── output_0825.json │ │ ├── output_0826.json │ │ ├── output_0827.json │ │ ├── output_0828.json │ │ ├── output_0829.json │ │ ├── output_0830.json │ │ ├── output_0831.json │ │ ├── output_0832.json │ │ ├── output_0833.json │ │ ├── output_0834.json │ │ ├── output_0835.json │ │ ├── output_0836.json │ │ ├── output_0837.json │ │ ├── output_0838.json │ │ ├── output_0839.json │ │ ├── output_0840.json │ │ ├── output_0841.json │ │ ├── output_0842.json │ │ ├── output_0843.json │ │ ├── output_0844.json │ │ ├── output_0845.json │ │ ├── output_0846.json │ │ ├── output_0847.json │ │ ├── output_0848.json │ │ ├── output_0849.json │ │ ├── output_0850.json │ │ ├── output_0851.json │ │ ├── output_0852.json │ │ ├── output_0853.json │ │ ├── output_0854.json │ │ ├── output_0855.json │ │ ├── output_0856.json │ │ ├── output_0857.json │ │ ├── output_0858.json │ │ ├── output_0859.json │ │ ├── output_0860.json │ │ ├── output_0861.json │ │ ├── output_0862.json │ │ ├── output_0863.json │ │ ├── output_0864.json │ │ ├── output_0865.json │ │ ├── output_0866.json │ │ ├── output_0867.json │ │ ├── output_0868.json │ │ ├── output_0869.json │ │ ├── output_0870.json │ │ ├── output_0871.json │ │ ├── output_0872.json │ │ ├── output_0873.json │ │ ├── output_0874.json │ │ ├── output_0875.json │ │ ├── output_0876.json │ │ ├── output_0877.json │ │ ├── output_0878.json │ │ ├── output_0879.json │ │ ├── output_0880.json │ │ ├── output_0881.json │ │ ├── output_0882.json │ │ ├── output_0883.json │ │ ├── output_0884.json │ │ ├── output_0885.json │ │ ├── output_0886.json │ │ ├── output_0887.json │ │ ├── output_0888.json │ │ ├── output_0889.json │ │ ├── output_0890.json │ │ ├── output_0891.json │ │ ├── output_0892.json │ │ ├── output_0893.json │ │ ├── output_0894.json │ │ ├── output_0895.json │ │ ├── output_0896.json │ │ ├── output_0897.json │ │ ├── output_0898.json │ │ ├── output_0899.json │ │ ├── output_0900.json │ │ ├── output_0901.json │ │ ├── output_0902.json │ │ ├── output_0903.json │ │ ├── output_0904.json │ │ ├── output_0905.json │ │ ├── output_0906.json │ │ ├── output_0907.json │ │ ├── output_0908.json │ │ ├── output_0909.json │ │ ├── output_0910.json │ │ ├── output_0911.json │ │ ├── output_0912.json │ │ ├── output_0913.json │ │ ├── output_0914.json │ │ ├── output_0915.json │ │ ├── output_0916.json │ │ ├── output_0917.json │ │ ├── output_0918.json │ │ ├── output_0919.json │ │ ├── output_0920.json │ │ ├── output_0921.json │ │ ├── output_0922.json │ │ ├── output_0923.json │ │ ├── output_0924.json │ │ ├── output_0925.json │ │ ├── output_0926.json │ │ ├── output_0927.json │ │ ├── output_0928.json │ │ ├── output_0929.json │ │ ├── output_0930.json │ │ ├── output_0931.json │ │ ├── output_0932.json │ │ ├── output_0933.json │ │ ├── output_0934.json │ │ ├── output_0935.json │ │ ├── output_0936.json │ │ ├── output_0937.json │ │ ├── output_0938.json │ │ ├── output_0939.json │ │ ├── output_0940.json │ │ ├── output_0941.json │ │ ├── output_0942.json │ │ ├── output_0943.json │ │ ├── output_0944.json │ │ ├── output_0945.json │ │ ├── output_0946.json │ │ ├── output_0947.json │ │ ├── output_0948.json │ │ ├── output_0949.json │ │ ├── output_0950.json │ │ ├── output_0951.json │ │ ├── output_0952.json │ │ ├── output_0953.json │ │ ├── output_0954.json │ │ ├── output_0955.json │ │ ├── output_0956.json │ │ ├── output_0957.json │ │ ├── output_0958.json │ │ ├── output_0959.json │ │ ├── output_0960.json │ │ ├── output_0961.json │ │ ├── output_0962.json │ │ ├── output_0963.json │ │ ├── output_0964.json │ │ ├── output_0965.json │ │ ├── output_0966.json │ │ ├── output_0967.json │ │ ├── output_0968.json │ │ ├── output_0969.json │ │ ├── output_0970.json │ │ ├── output_0971.json │ │ ├── output_0972.json │ │ ├── output_0973.json │ │ ├── output_0974.json │ │ ├── output_0975.json │ │ ├── output_0976.json │ │ ├── output_0977.json │ │ ├── output_0978.json │ │ ├── output_0979.json │ │ ├── output_0980.json │ │ ├── output_0981.json │ │ ├── output_0982.json │ │ ├── output_0983.json │ │ ├── output_0984.json │ │ ├── output_0985.json │ │ ├── output_0986.json │ │ ├── output_0987.json │ │ ├── output_0988.json │ │ ├── output_0989.json │ │ ├── output_0990.json │ │ ├── output_0991.json │ │ ├── output_0992.json │ │ ├── output_0993.json │ │ ├── output_0994.json │ │ ├── output_0995.json │ │ ├── output_0996.json │ │ ├── output_0997.json │ │ ├── output_0998.json │ │ ├── output_0999.json │ │ ├── output_1000.json │ │ ├── output_1001.json │ │ ├── output_1002.json │ │ ├── output_1003.json │ │ ├── output_1004.json │ │ ├── output_1005.json │ │ ├── output_1006.json │ │ ├── output_1007.json │ │ ├── output_1008.json │ │ ├── output_1009.json │ │ ├── output_1010.json │ │ ├── output_1011.json │ │ ├── output_1012.json │ │ ├── output_1013.json │ │ ├── output_1014.json │ │ ├── output_1015.json │ │ ├── output_1016.json │ │ ├── output_1017.json │ │ ├── output_1018.json │ │ ├── output_1019.json │ │ ├── output_1020.json │ │ ├── output_1021.json │ │ ├── output_1022.json │ │ ├── output_1023.json │ │ ├── output_1024.json │ │ ├── output_1025.json │ │ ├── output_1026.json │ │ ├── output_1027.json │ │ ├── output_1028.json │ │ ├── output_1029.json │ │ ├── output_1030.json │ │ ├── output_1031.json │ │ ├── output_1032.json │ │ ├── output_1033.json │ │ ├── output_1034.json │ │ ├── output_1035.json │ │ ├── output_1036.json │ │ ├── output_1037.json │ │ ├── output_1038.json │ │ ├── output_1039.json │ │ ├── output_1040.json │ │ ├── output_1041.json │ │ ├── output_1042.json │ │ ├── output_1043.json │ │ ├── output_1044.json │ │ ├── output_1045.json │ │ ├── output_1046.json │ │ ├── output_1047.json │ │ ├── output_1048.json │ │ ├── output_1049.json │ │ ├── output_1050.json │ │ ├── output_1051.json │ │ ├── output_1052.json │ │ ├── output_1053.json │ │ ├── output_1054.json │ │ ├── output_1055.json │ │ ├── output_1056.json │ │ ├── output_1057.json │ │ ├── output_1058.json │ │ ├── output_1059.json │ │ ├── output_1060.json │ │ ├── output_1061.json │ │ ├── output_1062.json │ │ ├── output_1063.json │ │ ├── output_1064.json │ │ ├── output_1065.json │ │ ├── output_1066.json │ │ ├── output_1067.json │ │ ├── output_1068.json │ │ ├── output_1069.json │ │ ├── output_1070.json │ │ ├── output_1071.json │ │ ├── output_1072.json │ │ ├── output_1073.json │ │ ├── output_1074.json │ │ ├── output_1075.json │ │ ├── output_1076.json │ │ ├── output_1077.json │ │ ├── output_1078.json │ │ ├── output_1079.json │ │ ├── output_1080.json │ │ ├── output_1081.json │ │ ├── output_1082.json │ │ ├── output_1083.json │ │ ├── output_1084.json │ │ ├── output_1085.json │ │ ├── output_1086.json │ │ ├── output_1087.json │ │ ├── output_1088.json │ │ ├── output_1089.json │ │ ├── output_1090.json │ │ ├── output_1091.json │ │ ├── output_1092.json │ │ ├── output_1093.json │ │ ├── output_1094.json │ │ ├── output_1095.json │ │ ├── output_1096.json │ │ ├── output_1097.json │ │ ├── output_1098.json │ │ ├── output_1099.json │ │ ├── output_1100.json │ │ ├── output_1101.json │ │ ├── output_1102.json │ │ ├── output_1103.json │ │ ├── output_1104.json │ │ ├── output_1105.json │ │ ├── output_1106.json │ │ ├── output_1107.json │ │ ├── output_1108.json │ │ ├── output_1109.json │ │ ├── output_1110.json │ │ ├── output_1111.json │ │ ├── output_1112.json │ │ ├── output_1113.json │ │ ├── output_1114.json │ │ ├── output_1115.json │ │ ├── output_1116.json │ │ ├── output_1117.json │ │ ├── output_1118.json │ │ ├── output_1119.json │ │ ├── output_1120.json │ │ ├── output_1121.json │ │ ├── output_1122.json │ │ ├── output_1123.json │ │ ├── output_1124.json │ │ ├── output_1125.json │ │ ├── output_1126.json │ │ ├── output_1127.json │ │ ├── output_1128.json │ │ ├── output_1129.json │ │ ├── output_1130.json │ │ ├── output_1131.json │ │ ├── output_1132.json │ │ ├── output_1133.json │ │ ├── output_1134.json │ │ ├── output_1135.json │ │ ├── output_1136.json │ │ ├── output_1137.json │ │ ├── output_1138.json │ │ ├── output_1139.json │ │ ├── output_1140.json │ │ ├── output_1141.json │ │ ├── output_1142.json │ │ ├── output_1143.json │ │ ├── output_1144.json │ │ ├── output_1145.json │ │ ├── output_1146.json │ │ ├── output_1147.json │ │ ├── output_1148.json │ │ ├── output_1149.json │ │ ├── output_1150.json │ │ ├── output_1151.json │ │ ├── output_1152.json │ │ ├── output_1153.json │ │ ├── output_1154.json │ │ ├── output_1155.json │ │ ├── output_1156.json │ │ ├── output_1157.json │ │ ├── output_1158.json │ │ ├── output_1159.json │ │ ├── output_1160.json │ │ ├── output_1161.json │ │ ├── output_1162.json │ │ ├── output_1163.json │ │ ├── output_1164.json │ │ ├── output_1165.json │ │ ├── output_1166.json │ │ ├── output_1167.json │ │ ├── output_1168.json │ │ ├── output_1169.json │ │ ├── output_1170.json │ │ ├── output_1171.json │ │ ├── output_1172.json │ │ ├── output_1173.json │ │ ├── output_1174.json │ │ ├── output_1175.json │ │ ├── output_1176.json │ │ ├── output_1177.json │ │ ├── output_1178.json │ │ ├── output_1179.json │ │ ├── output_1180.json │ │ ├── output_1181.json │ │ ├── output_1182.json │ │ ├── output_1183.json │ │ ├── output_1184.json │ │ ├── output_1185.json │ │ ├── output_1186.json │ │ ├── output_1187.json │ │ ├── output_1188.json │ │ ├── output_1189.json │ │ ├── output_1190.json │ │ ├── output_1191.json │ │ ├── output_1192.json │ │ ├── output_1193.json │ │ ├── output_1194.json │ │ ├── output_1195.json │ │ ├── output_1196.json │ │ ├── output_1197.json │ │ ├── output_1198.json │ │ ├── output_1199.json │ │ ├── output_1200.json │ │ ├── output_1201.json │ │ ├── output_1202.json │ │ ├── output_1203.json │ │ ├── output_1204.json │ │ ├── output_1205.json │ │ ├── output_1206.json │ │ ├── output_1207.json │ │ ├── output_1208.json │ │ ├── output_1209.json │ │ ├── output_1210.json │ │ ├── output_1211.json │ │ ├── output_1212.json │ │ ├── output_1213.json │ │ ├── output_1214.json │ │ ├── output_1215.json │ │ ├── output_1216.json │ │ ├── output_1217.json │ │ ├── output_1218.json │ │ ├── output_1219.json │ │ ├── output_1220.json │ │ ├── output_1221.json │ │ ├── output_1222.json │ │ ├── output_1223.json │ │ ├── output_1224.json │ │ ├── output_1225.json │ │ ├── output_1226.json │ │ ├── output_1227.json │ │ ├── output_1228.json │ │ ├── output_1229.json │ │ ├── output_1230.json │ │ ├── output_1231.json │ │ ├── output_1232.json │ │ ├── output_1233.json │ │ ├── output_1234.json │ │ ├── output_1235.json │ │ ├── output_1236.json │ │ ├── output_1237.json │ │ ├── output_1238.json │ │ ├── output_1239.json │ │ ├── output_1240.json │ │ ├── output_1241.json │ │ ├── output_1242.json │ │ ├── output_1243.json │ │ ├── output_1244.json │ │ ├── output_1245.json │ │ ├── output_1246.json │ │ ├── output_1247.json │ │ ├── output_1248.json │ │ ├── output_1249.json │ │ ├── output_1250.json │ │ ├── output_1251.json │ │ ├── output_1252.json │ │ ├── output_1253.json │ │ ├── output_1254.json │ │ ├── output_1255.json │ │ ├── output_1256.json │ │ ├── output_1257.json │ │ ├── output_1258.json │ │ ├── output_1259.json │ │ ├── output_1260.json │ │ ├── output_1261.json │ │ ├── output_1262.json │ │ ├── output_1263.json │ │ ├── output_1264.json │ │ ├── output_1265.json │ │ ├── output_1266.json │ │ ├── output_1267.json │ │ ├── output_1268.json │ │ ├── output_1269.json │ │ ├── output_1270.json │ │ ├── output_1271.json │ │ ├── output_1272.json │ │ ├── output_1273.json │ │ ├── output_1274.json │ │ ├── output_1275.json │ │ ├── output_1276.json │ │ ├── output_1277.json │ │ ├── output_1278.json │ │ ├── output_1279.json │ │ ├── output_1280.json │ │ ├── output_1281.json │ │ ├── output_1282.json │ │ ├── output_1283.json │ │ ├── output_1284.json │ │ ├── output_1285.json │ │ ├── output_1286.json │ │ ├── output_1287.json │ │ ├── output_1288.json │ │ ├── output_1289.json │ │ ├── output_1290.json │ │ ├── output_1291.json │ │ ├── output_1292.json │ │ ├── output_1293.json │ │ ├── output_1294.json │ │ ├── output_1295.json │ │ ├── output_1296.json │ │ ├── output_1297.json │ │ ├── output_1298.json │ │ ├── output_1299.json │ │ ├── output_1300.json │ │ ├── output_1301.json │ │ ├── output_1302.json │ │ ├── output_1303.json │ │ ├── output_1304.json │ │ ├── output_1305.json │ │ ├── output_1306.json │ │ ├── output_1307.json │ │ ├── output_1308.json │ │ ├── output_1309.json │ │ ├── output_1310.json │ │ ├── output_1311.json │ │ ├── output_1312.json │ │ ├── output_1313.json │ │ ├── output_1314.json │ │ ├── output_1315.json │ │ ├── output_1316.json │ │ ├── output_1317.json │ │ ├── output_1318.json │ │ ├── output_1319.json │ │ ├── output_1320.json │ │ ├── output_1321.json │ │ ├── output_1322.json │ │ ├── output_1323.json │ │ ├── output_1324.json │ │ ├── output_1325.json │ │ ├── output_1326.json │ │ ├── output_1327.json │ │ ├── output_1328.json │ │ ├── output_1329.json │ │ ├── output_1330.json │ │ ├── output_1331.json │ │ ├── output_1332.json │ │ ├── output_1333.json │ │ ├── output_1334.json │ │ ├── output_1335.json │ │ ├── output_1336.json │ │ ├── output_1337.json │ │ ├── output_1338.json │ │ ├── output_1339.json │ │ ├── output_1340.json │ │ ├── output_1341.json │ │ ├── output_1342.json │ │ ├── output_1343.json │ │ ├── output_1344.json │ │ ├── output_1345.json │ │ ├── output_1346.json │ │ ├── output_1347.json │ │ ├── output_1348.json │ │ ├── output_1349.json │ │ ├── output_1350.json │ │ ├── output_1351.json │ │ ├── output_1352.json │ │ ├── output_1353.json │ │ ├── output_1354.json │ │ ├── output_1355.json │ │ ├── output_1356.json │ │ ├── output_1357.json │ │ ├── output_1358.json │ │ ├── output_1359.json │ │ ├── output_1360.json │ │ ├── output_1361.json │ │ ├── output_1362.json │ │ ├── output_1363.json │ │ ├── output_1364.json │ │ ├── output_1365.json │ │ ├── output_1366.json │ │ ├── output_1367.json │ │ ├── output_1368.json │ │ ├── output_1369.json │ │ ├── output_1370.json │ │ ├── output_1371.json │ │ ├── output_1372.json │ │ ├── output_1373.json │ │ ├── output_1374.json │ │ ├── output_1375.json │ │ ├── output_1376.json │ │ ├── output_1377.json │ │ ├── output_1378.json │ │ ├── output_1379.json │ │ ├── output_1380.json │ │ ├── output_1381.json │ │ ├── output_1382.json │ │ ├── output_1383.json │ │ ├── output_1384.json │ │ ├── output_1385.json │ │ ├── output_1386.json │ │ ├── output_1387.json │ │ ├── output_1388.json │ │ ├── output_1389.json │ │ ├── output_1390.json │ │ ├── output_1391.json │ │ ├── output_1392.json │ │ ├── output_1393.json │ │ ├── output_1394.json │ │ ├── output_1395.json │ │ ├── output_1396.json │ │ ├── output_1397.json │ │ ├── output_1398.json │ │ ├── output_1399.json │ │ ├── output_1400.json │ │ ├── output_1401.json │ │ ├── output_1402.json │ │ ├── output_1403.json │ │ ├── output_1404.json │ │ ├── output_1405.json │ │ ├── output_1406.json │ │ ├── output_1407.json │ │ ├── output_1408.json │ │ ├── output_1409.json │ │ ├── output_1410.json │ │ ├── output_1411.json │ │ ├── output_1412.json │ │ ├── output_1413.json │ │ ├── output_1414.json │ │ ├── output_1415.json │ │ ├── output_1416.json │ │ ├── output_1417.json │ │ ├── output_1418.json │ │ ├── output_1419.json │ │ ├── output_1420.json │ │ ├── output_1421.json │ │ ├── output_1422.json │ │ ├── output_1423.json │ │ ├── output_1424.json │ │ ├── output_1425.json │ │ ├── output_1426.json │ │ ├── output_1427.json │ │ ├── output_1428.json │ │ ├── output_1429.json │ │ ├── output_1430.json │ │ ├── output_1431.json │ │ ├── output_1432.json │ │ ├── output_1433.json │ │ ├── output_1434.json │ │ ├── output_1435.json │ │ ├── output_1436.json │ │ ├── output_1437.json │ │ ├── output_1438.json │ │ ├── output_1439.json │ │ ├── output_1440.json │ │ ├── output_1441.json │ │ ├── output_1442.json │ │ ├── output_1443.json │ │ ├── output_1444.json │ │ ├── output_1445.json │ │ ├── output_1446.json │ │ ├── output_1447.json │ │ ├── output_1448.json │ │ ├── output_1449.json │ │ ├── output_1450.json │ │ ├── output_1451.json │ │ ├── output_1452.json │ │ ├── output_1453.json │ │ ├── output_1454.json │ │ ├── output_1455.json │ │ ├── output_1456.json │ │ ├── output_1457.json │ │ ├── output_1458.json │ │ ├── output_1459.json │ │ ├── output_1460.json │ │ ├── output_1461.json │ │ ├── output_1462.json │ │ ├── output_1463.json │ │ ├── output_1464.json │ │ ├── output_1465.json │ │ ├── output_1466.json │ │ ├── output_1467.json │ │ ├── output_1468.json │ │ ├── output_1469.json │ │ ├── output_1470.json │ │ ├── output_1471.json │ │ ├── output_1472.json │ │ ├── output_1473.json │ │ ├── output_1474.json │ │ ├── output_1475.json │ │ ├── output_1476.json │ │ ├── output_1477.json │ │ ├── output_1478.json │ │ ├── output_1479.json │ │ ├── output_1480.json │ │ ├── output_1481.json │ │ ├── output_1482.json │ │ ├── output_1483.json │ │ ├── output_1484.json │ │ ├── output_1485.json │ │ ├── output_1486.json │ │ ├── output_1487.json │ │ ├── output_1488.json │ │ ├── output_1489.json │ │ ├── output_1490.json │ │ ├── output_1491.json │ │ ├── output_1492.json │ │ ├── output_1493.json │ │ ├── output_1494.json │ │ ├── output_1495.json │ │ ├── output_1496.json │ │ ├── output_1497.json │ │ ├── output_1498.json │ │ ├── output_1499.json │ │ ├── output_1500.json │ │ ├── output_1501.json │ │ ├── output_1502.json │ │ ├── output_1503.json │ │ ├── output_1504.json │ │ ├── output_1505.json │ │ ├── output_1506.json │ │ ├── output_1507.json │ │ ├── output_1508.json │ │ ├── output_1509.json │ │ ├── output_1510.json │ │ ├── output_1511.json │ │ ├── output_1512.json │ │ ├── output_1513.json │ │ ├── output_1514.json │ │ ├── output_1515.json │ │ ├── output_1516.json │ │ ├── output_1517.json │ │ ├── output_1518.json │ │ ├── output_1519.json │ │ ├── output_1520.json │ │ ├── output_1521.json │ │ ├── output_1522.json │ │ ├── output_1523.json │ │ ├── output_1524.json │ │ ├── output_1525.json │ │ ├── output_1526.json │ │ ├── output_1527.json │ │ ├── output_1528.json │ │ ├── output_1529.json │ │ ├── output_1530.json │ │ ├── output_1531.json │ │ ├── output_1532.json │ │ ├── output_1533.json │ │ ├── output_1534.json │ │ ├── output_1535.json │ │ ├── output_1536.json │ │ ├── output_1537.json │ │ ├── output_1538.json │ │ ├── output_1539.json │ │ ├── output_1540.json │ │ ├── output_1541.json │ │ ├── output_1542.json │ │ ├── output_1543.json │ │ ├── output_1544.json │ │ ├── output_1545.json │ │ ├── output_1546.json │ │ ├── output_1547.json │ │ ├── output_1548.json │ │ ├── output_1549.json │ │ ├── output_1550.json │ │ ├── output_1551.json │ │ ├── output_1552.json │ │ ├── output_1553.json │ │ ├── output_1554.json │ │ ├── output_1555.json │ │ ├── output_1556.json │ │ ├── output_1557.json │ │ ├── output_1558.json │ │ ├── output_1559.json │ │ ├── output_1560.json │ │ ├── output_1561.json │ │ ├── output_1562.json │ │ ├── output_1563.json │ │ ├── output_1564.json │ │ ├── output_1565.json │ │ ├── output_1566.json │ │ ├── output_1567.json │ │ ├── output_1568.json │ │ ├── output_1569.json │ │ ├── output_1570.json │ │ ├── output_1571.json │ │ ├── output_1572.json │ │ ├── output_1573.json │ │ ├── output_1574.json │ │ ├── output_1575.json │ │ ├── output_1576.json │ │ ├── output_1577.json │ │ ├── output_1578.json │ │ ├── output_1579.json │ │ ├── output_1580.json │ │ ├── output_1581.json │ │ ├── output_1582.json │ │ ├── output_1583.json │ │ ├── output_1584.json │ │ ├── output_1585.json │ │ ├── output_1586.json │ │ ├── output_1587.json │ │ ├── output_1588.json │ │ ├── output_1589.json │ │ ├── output_1590.json │ │ ├── output_1591.json │ │ ├── output_1592.json │ │ ├── output_1593.json │ │ ├── output_1594.json │ │ ├── output_1595.json │ │ ├── output_1596.json │ │ ├── output_1597.json │ │ ├── output_1598.json │ │ ├── output_1599.json │ │ ├── output_1600.json │ │ ├── output_1601.json │ │ ├── output_1602.json │ │ ├── output_1603.json │ │ ├── output_1604.json │ │ ├── output_1605.json │ │ ├── output_1606.json │ │ ├── output_1607.json │ │ ├── output_1608.json │ │ ├── output_1609.json │ │ ├── output_1610.json │ │ ├── output_1611.json │ │ ├── output_1612.json │ │ ├── output_1613.json │ │ ├── output_1614.json │ │ ├── output_1615.json │ │ ├── output_1616.json │ │ ├── output_1617.json │ │ ├── output_1618.json │ │ ├── output_1619.json │ │ ├── output_1620.json │ │ ├── output_1621.json │ │ ├── output_1622.json │ │ ├── output_1623.json │ │ ├── output_1624.json │ │ ├── output_1625.json │ │ ├── output_1626.json │ │ ├── output_1627.json │ │ ├── output_1628.json │ │ ├── output_1629.json │ │ ├── output_1630.json │ │ ├── output_1631.json │ │ ├── output_1632.json │ │ ├── output_1633.json │ │ ├── output_1634.json │ │ ├── output_1635.json │ │ ├── output_1636.json │ │ ├── output_1637.json │ │ ├── output_1638.json │ │ ├── output_1639.json │ │ ├── output_1640.json │ │ ├── output_1641.json │ │ ├── output_1642.json │ │ ├── output_1643.json │ │ ├── output_1644.json │ │ ├── output_1645.json │ │ ├── output_1646.json │ │ ├── output_1647.json │ │ ├── output_1648.json │ │ ├── output_1649.json │ │ ├── output_1650.json │ │ ├── output_1651.json │ │ ├── output_1652.json │ │ ├── output_1653.json │ │ ├── output_1654.json │ │ ├── output_1655.json │ │ ├── output_1656.json │ │ ├── output_1657.json │ │ ├── output_1658.json │ │ ├── output_1659.json │ │ ├── output_1660.json │ │ ├── output_1661.json │ │ ├── output_1662.json │ │ ├── output_1663.json │ │ ├── output_1664.json │ │ ├── output_1665.json │ │ ├── output_1666.json │ │ ├── output_1667.json │ │ ├── output_1668.json │ │ ├── output_1669.json │ │ ├── output_1670.json │ │ ├── output_1671.json │ │ ├── output_1672.json │ │ ├── output_1673.json │ │ ├── output_1674.json │ │ ├── output_1675.json │ │ ├── output_1676.json │ │ ├── output_1677.json │ │ ├── output_1678.json │ │ ├── output_1679.json │ │ ├── output_1680.json │ │ ├── output_1681.json │ │ ├── output_1682.json │ │ ├── output_1683.json │ │ ├── output_1684.json │ │ ├── output_1685.json │ │ ├── output_1686.json │ │ ├── output_1687.json │ │ ├── output_1688.json │ │ ├── output_1689.json │ │ ├── output_1690.json │ │ ├── output_1691.json │ │ ├── output_1692.json │ │ ├── output_1693.json │ │ ├── output_1694.json │ │ ├── output_1695.json │ │ ├── output_1696.json │ │ ├── output_1697.json │ │ ├── output_1698.json │ │ ├── output_1699.json │ │ ├── output_1700.json │ │ ├── output_1701.json │ │ ├── output_1702.json │ │ ├── output_1703.json │ │ ├── output_1704.json │ │ ├── output_1705.json │ │ ├── output_1706.json │ │ ├── output_1707.json │ │ ├── output_1708.json │ │ ├── output_1709.json │ │ ├── output_1710.json │ │ ├── output_1711.json │ │ ├── output_1712.json │ │ ├── output_1713.json │ │ ├── output_1714.json │ │ ├── output_1715.json │ │ ├── output_1716.json │ │ ├── output_1717.json │ │ ├── output_1718.json │ │ ├── output_1719.json │ │ ├── output_1720.json │ │ ├── output_1721.json │ │ ├── output_1722.json │ │ ├── output_1723.json │ │ ├── output_1724.json │ │ ├── output_1725.json │ │ ├── output_1726.json │ │ ├── output_1727.json │ │ ├── output_1728.json │ │ ├── output_1729.json │ │ ├── output_1730.json │ │ ├── output_1731.json │ │ ├── output_1732.json │ │ ├── output_1733.json │ │ ├── output_1734.json │ │ ├── output_1735.json │ │ ├── output_1736.json │ │ ├── output_1737.json │ │ ├── output_1738.json │ │ ├── output_1739.json │ │ ├── output_1740.json │ │ ├── output_1741.json │ │ ├── output_1742.json │ │ ├── output_1743.json │ │ ├── output_1744.json │ │ ├── output_1745.json │ │ ├── output_1746.json │ │ ├── output_1747.json │ │ ├── output_1748.json │ │ ├── output_1749.json │ │ ├── output_1750.json │ │ ├── output_1751.json │ │ ├── output_1752.json │ │ ├── output_1753.json │ │ ├── output_1754.json │ │ ├── output_1755.json │ │ ├── output_1756.json │ │ ├── output_1757.json │ │ ├── output_1758.json │ │ ├── output_1759.json │ │ ├── output_1760.json │ │ ├── output_1761.json │ │ ├── output_1762.json │ │ ├── output_1763.json │ │ ├── output_1764.json │ │ ├── output_1765.json │ │ ├── output_1766.json │ │ ├── output_1767.json │ │ ├── output_1768.json │ │ ├── output_1769.json │ │ ├── output_1770.json │ │ ├── output_1771.json │ │ ├── output_1772.json │ │ ├── output_1773.json │ │ ├── output_1774.json │ │ ├── output_1775.json │ │ ├── output_1776.json │ │ ├── output_1777.json │ │ ├── output_1778.json │ │ ├── output_1779.json │ │ ├── output_1780.json │ │ ├── output_1781.json │ │ ├── output_1782.json │ │ ├── output_1783.json │ │ ├── output_1784.json │ │ ├── output_1785.json │ │ ├── output_1786.json │ │ ├── output_1787.json │ │ ├── output_1788.json │ │ ├── output_1789.json │ │ ├── output_1790.json │ │ ├── output_1791.json │ │ ├── output_1792.json │ │ ├── output_1793.json │ │ ├── output_1794.json │ │ ├── output_1795.json │ │ ├── output_1796.json │ │ ├── output_1797.json │ │ ├── output_1798.json │ │ ├── output_1799.json │ │ ├── output_1800.json │ │ ├── output_1801.json │ │ ├── output_1802.json │ │ ├── output_1803.json │ │ ├── output_1804.json │ │ ├── output_1805.json │ │ ├── output_1806.json │ │ ├── output_1807.json │ │ ├── output_1808.json │ │ ├── output_1809.json │ │ ├── output_1810.json │ │ ├── output_1811.json │ │ ├── output_1812.json │ │ ├── output_1813.json │ │ ├── output_1814.json │ │ ├── output_1815.json │ │ ├── output_1816.json │ │ ├── output_1817.json │ │ ├── output_1818.json │ │ ├── output_1819.json │ │ ├── output_1820.json │ │ ├── output_1821.json │ │ ├── output_1822.json │ │ ├── output_1823.json │ │ ├── output_1824.json │ │ ├── output_1825.json │ │ ├── output_1826.json │ │ ├── output_1827.json │ │ ├── output_1828.json │ │ ├── output_1829.json │ │ ├── output_1830.json │ │ ├── output_1831.json │ │ ├── output_1832.json │ │ ├── output_1833.json │ │ ├── output_1834.json │ │ ├── output_1835.json │ │ ├── output_1836.json │ │ ├── output_1837.json │ │ ├── output_1838.json │ │ ├── output_1839.json │ │ ├── output_1840.json │ │ ├── output_1841.json │ │ ├── output_1842.json │ │ ├── output_1843.json │ │ ├── output_1844.json │ │ ├── output_1845.json │ │ ├── output_1846.json │ │ ├── output_1847.json │ │ ├── output_1848.json │ │ ├── output_1849.json │ │ ├── output_1850.json │ │ ├── output_1851.json │ │ ├── output_1852.json │ │ ├── output_1853.json │ │ ├── output_1854.json │ │ ├── output_1855.json │ │ ├── output_1856.json │ │ ├── output_1857.json │ │ ├── output_1858.json │ │ ├── output_1859.json │ │ ├── output_1860.json │ │ ├── output_1861.json │ │ ├── output_1862.json │ │ ├── output_1863.json │ │ ├── output_1864.json │ │ ├── output_1865.json │ │ ├── output_1866.json │ │ ├── output_1867.json │ │ ├── output_1868.json │ │ ├── output_1869.json │ │ ├── output_1870.json │ │ ├── output_1871.json │ │ ├── output_1872.json │ │ ├── output_1873.json │ │ ├── output_1874.json │ │ ├── output_1875.json │ │ ├── output_1876.json │ │ ├── output_1877.json │ │ ├── output_1878.json │ │ ├── output_1879.json │ │ ├── output_1880.json │ │ ├── output_1881.json │ │ ├── output_1882.json │ │ ├── output_1883.json │ │ ├── output_1884.json │ │ ├── output_1885.json │ │ ├── output_1886.json │ │ ├── output_1887.json │ │ ├── output_1888.json │ │ ├── output_1889.json │ │ ├── output_1890.json │ │ ├── output_1891.json │ │ ├── output_1892.json │ │ ├── output_1893.json │ │ ├── output_1894.json │ │ ├── output_1895.json │ │ ├── output_1896.json │ │ ├── output_1897.json │ │ ├── output_1898.json │ │ ├── output_1899.json │ │ ├── output_1900.json │ │ ├── output_1901.json │ │ ├── output_1902.json │ │ ├── output_1903.json │ │ ├── output_1904.json │ │ ├── output_1905.json │ │ ├── output_1906.json │ │ ├── output_1907.json │ │ ├── output_1908.json │ │ ├── output_1909.json │ │ ├── output_1910.json │ │ ├── output_1911.json │ │ ├── output_1912.json │ │ ├── output_1913.json │ │ ├── output_1914.json │ │ ├── output_1915.json │ │ ├── output_1916.json │ │ ├── output_1917.json │ │ ├── output_1918.json │ │ ├── output_1919.json │ │ ├── output_1920.json │ │ ├── output_1921.json │ │ ├── output_1922.json │ │ ├── output_1923.json │ │ ├── output_1924.json │ │ ├── output_1925.json │ │ ├── output_1926.json │ │ ├── output_1927.json │ │ ├── output_1928.json │ │ ├── output_1929.json │ │ ├── output_1930.json │ │ ├── output_1931.json │ │ ├── output_1932.json │ │ ├── output_1933.json │ │ ├── output_1934.json │ │ ├── output_1935.json │ │ ├── output_1936.json │ │ ├── output_1937.json │ │ ├── output_1938.json │ │ ├── output_1939.json │ │ ├── output_1940.json │ │ ├── output_1941.json │ │ ├── output_1942.json │ │ ├── output_1943.json │ │ ├── output_1944.json │ │ ├── output_1945.json │ │ ├── output_1946.json │ │ ├── output_1947.json │ │ ├── output_1948.json │ │ ├── output_1949.json │ │ ├── output_1950.json │ │ ├── output_1951.json │ │ ├── output_1952.json │ │ ├── output_1953.json │ │ ├── output_1954.json │ │ ├── output_1955.json │ │ ├── output_1956.json │ │ ├── output_1957.json │ │ ├── output_1958.json │ │ ├── output_1959.json │ │ ├── output_1960.json │ │ ├── output_1961.json │ │ ├── output_1962.json │ │ ├── output_1963.json │ │ ├── output_1964.json │ │ ├── output_1965.json │ │ ├── output_1966.json │ │ ├── output_1967.json │ │ ├── output_1968.json │ │ ├── output_1969.json │ │ ├── output_1970.json │ │ ├── output_1971.json │ │ ├── output_1972.json │ │ ├── output_1973.json │ │ ├── output_1974.json │ │ ├── output_1975.json │ │ ├── output_1976.json │ │ ├── output_1977.json │ │ ├── output_1978.json │ │ ├── output_1979.json │ │ ├── output_1980.json │ │ ├── output_1981.json │ │ ├── output_1982.json │ │ ├── output_1983.json │ │ ├── output_1984.json │ │ ├── output_1985.json │ │ ├── output_1986.json │ │ ├── output_1987.json │ │ ├── output_1988.json │ │ ├── output_1989.json │ │ ├── output_1990.json │ │ ├── output_1991.json │ │ ├── output_1992.json │ │ ├── output_1993.json │ │ ├── output_1994.json │ │ ├── output_1995.json │ │ ├── output_1996.json │ │ ├── output_1997.json │ │ ├── output_1998.json │ │ ├── output_1999.json │ │ ├── output_2000.json │ │ ├── output_2001.json │ │ ├── output_2002.json │ │ ├── output_2003.json │ │ ├── output_2004.json │ │ ├── output_2005.json │ │ ├── output_2006.json │ │ ├── output_2007.json │ │ ├── output_2008.json │ │ ├── output_2009.json │ │ ├── output_2010.json │ │ ├── output_2011.json │ │ ├── output_2012.json │ │ ├── output_2013.json │ │ ├── output_2014.json │ │ ├── output_2015.json │ │ ├── output_2016.json │ │ ├── output_2017.json │ │ ├── output_2018.json │ │ ├── output_2019.json │ │ ├── output_2020.json │ │ ├── output_2021.json │ │ ├── output_2022.json │ │ ├── output_2023.json │ │ ├── output_2024.json │ │ ├── output_2025.json │ │ ├── output_2026.json │ │ ├── output_2027.json │ │ ├── output_2028.json │ │ ├── output_2029.json │ │ ├── output_2030.json │ │ ├── output_2031.json │ │ ├── output_2032.json │ │ ├── output_2033.json │ │ ├── output_2034.json │ │ ├── output_2035.json │ │ ├── output_2036.json │ │ ├── output_2037.json │ │ ├── output_2038.json │ │ ├── output_2039.json │ │ ├── output_2040.json │ │ ├── output_2041.json │ │ ├── output_2042.json │ │ ├── output_2043.json │ │ ├── output_2044.json │ │ ├── output_2045.json │ │ ├── output_2046.json │ │ ├── output_2047.json │ │ ├── output_2048.json │ │ ├── output_2049.json │ │ ├── output_2050.json │ │ ├── output_2051.json │ │ ├── output_2052.json │ │ ├── output_2053.json │ │ ├── output_2054.json │ │ ├── output_2055.json │ │ ├── output_2056.json │ │ ├── output_2057.json │ │ ├── output_2058.json │ │ ├── output_2059.json │ │ ├── output_2060.json │ │ ├── output_2061.json │ │ ├── output_2062.json │ │ ├── output_2063.json │ │ ├── output_2064.json │ │ ├── output_2065.json │ │ ├── output_2066.json │ │ ├── output_2067.json │ │ ├── output_2068.json │ │ ├── output_2069.json │ │ ├── output_2070.json │ │ ├── output_2071.json │ │ ├── output_2072.json │ │ ├── output_2073.json │ │ ├── output_2074.json │ │ ├── output_2075.json │ │ ├── output_2076.json │ │ ├── output_2077.json │ │ ├── output_2078.json │ │ ├── output_2079.json │ │ ├── output_2080.json │ │ ├── output_2081.json │ │ ├── output_2082.json │ │ ├── output_2083.json │ │ ├── output_2084.json │ │ ├── output_2085.json │ │ ├── output_2086.json │ │ ├── output_2087.json │ │ ├── output_2088.json │ │ ├── output_2089.json │ │ ├── output_2090.json │ │ ├── output_2091.json │ │ ├── output_2092.json │ │ ├── output_2093.json │ │ ├── output_2094.json │ │ ├── output_2095.json │ │ ├── output_2096.json │ │ ├── output_2097.json │ │ ├── output_2098.json │ │ ├── output_2099.json │ │ ├── output_2100.json │ │ ├── output_2101.json │ │ ├── output_2102.json │ │ ├── output_2103.json │ │ ├── output_2104.json │ │ ├── output_2105.json │ │ ├── output_2106.json │ │ ├── output_2107.json │ │ ├── output_2108.json │ │ ├── output_2109.json │ │ ├── output_2110.json │ │ ├── output_2111.json │ │ ├── output_2112.json │ │ ├── output_2113.json │ │ ├── output_2114.json │ │ ├── output_2115.json │ │ ├── output_2116.json │ │ ├── output_2117.json │ │ ├── output_2118.json │ │ ├── output_2119.json │ │ ├── output_2120.json │ │ ├── output_2121.json │ │ ├── output_2122.json │ │ ├── output_2123.json │ │ ├── output_2124.json │ │ ├── output_2125.json │ │ ├── output_2126.json │ │ ├── output_2127.json │ │ ├── output_2128.json │ │ ├── output_2129.json │ │ ├── output_2130.json │ │ ├── output_2131.json │ │ ├── output_2132.json │ │ ├── output_2133.json │ │ ├── output_2134.json │ │ ├── output_2135.json │ │ ├── output_2136.json │ │ ├── output_2137.json │ │ ├── output_2138.json │ │ ├── output_2139.json │ │ ├── output_2140.json │ │ ├── output_2141.json │ │ ├── output_2142.json │ │ ├── output_2143.json │ │ ├── output_2144.json │ │ ├── output_2145.json │ │ ├── output_2146.json │ │ ├── output_2147.json │ │ ├── output_2148.json │ │ ├── output_2149.json │ │ ├── output_2150.json │ │ ├── output_2151.json │ │ ├── output_2152.json │ │ ├── output_2153.json │ │ ├── output_2154.json │ │ ├── output_2155.json │ │ ├── output_2156.json │ │ ├── output_2157.json │ │ ├── output_2158.json │ │ ├── output_2159.json │ │ ├── output_2160.json │ │ ├── output_2161.json │ │ ├── output_2162.json │ │ ├── output_2163.json │ │ ├── output_2164.json │ │ ├── output_2165.json │ │ ├── output_2166.json │ │ ├── output_2167.json │ │ ├── output_2168.json │ │ ├── output_2169.json │ │ ├── output_2170.json │ │ ├── output_2171.json │ │ ├── output_2172.json │ │ ├── output_2173.json │ │ ├── output_2174.json │ │ ├── output_2175.json │ │ ├── output_2176.json │ │ ├── output_2177.json │ │ ├── output_2178.json │ │ ├── output_2179.json │ │ ├── output_2180.json │ │ ├── output_2181.json │ │ ├── output_2182.json │ │ ├── output_2183.json │ │ ├── output_2184.json │ │ ├── output_2185.json │ │ ├── output_2186.json │ │ ├── output_2187.json │ │ ├── output_2188.json │ │ ├── output_2189.json │ │ ├── output_2190.json │ │ ├── output_2191.json │ │ ├── output_2192.json │ │ ├── output_2193.json │ │ ├── output_2194.json │ │ ├── output_2195.json │ │ ├── output_2196.json │ │ ├── output_2197.json │ │ ├── output_2198.json │ │ ├── output_2199.json │ │ ├── output_2200.json │ │ ├── output_2201.json │ │ ├── output_2202.json │ │ ├── output_2203.json │ │ ├── output_2204.json │ │ ├── output_2205.json │ │ ├── output_2206.json │ │ ├── output_2207.json │ │ ├── output_2208.json │ │ ├── output_2209.json │ │ ├── output_2210.json │ │ ├── output_2211.json │ │ ├── output_2212.json │ │ ├── output_2213.json │ │ ├── output_2214.json │ │ ├── output_2215.json │ │ ├── output_2216.json │ │ ├── output_2217.json │ │ ├── output_2218.json │ │ ├── output_2219.json │ │ ├── output_2220.json │ │ ├── output_2221.json │ │ ├── output_2222.json │ │ ├── output_2223.json │ │ ├── output_2224.json │ │ ├── output_2225.json │ │ ├── output_2226.json │ │ ├── output_2227.json │ │ ├── output_2228.json │ │ ├── output_2229.json │ │ ├── output_2230.json │ │ ├── output_2231.json │ │ ├── output_2232.json │ │ ├── output_2233.json │ │ ├── output_2234.json │ │ ├── output_2235.json │ │ ├── output_2236.json │ │ ├── output_2237.json │ │ ├── output_2238.json │ │ ├── output_2239.json │ │ ├── output_2240.json │ │ ├── output_2241.json │ │ ├── output_2242.json │ │ ├── output_2243.json │ │ ├── output_2244.json │ │ ├── output_2245.json │ │ ├── output_2246.json │ │ ├── output_2247.json │ │ ├── output_2248.json │ │ ├── output_2249.json │ │ ├── output_2250.json │ │ ├── output_2251.json │ │ ├── output_2252.json │ │ ├── output_2253.json │ │ ├── output_2254.json │ │ ├── output_2255.json │ │ ├── output_2256.json │ │ ├── output_2257.json │ │ ├── output_2258.json │ │ ├── output_2259.json │ │ ├── output_2260.json │ │ ├── output_2261.json │ │ ├── output_2262.json │ │ ├── output_2263.json │ │ ├── output_2264.json │ │ ├── output_2265.json │ │ ├── output_2266.json │ │ ├── output_2267.json │ │ ├── output_2268.json │ │ ├── output_2269.json │ │ ├── output_2270.json │ │ ├── output_2271.json │ │ ├── output_2272.json │ │ ├── output_2273.json │ │ ├── output_2274.json │ │ ├── output_2275.json │ │ ├── output_2276.json │ │ ├── output_2277.json │ │ ├── output_2278.json │ │ ├── output_2279.json │ │ ├── output_2280.json │ │ ├── output_2281.json │ │ ├── output_2282.json │ │ ├── output_2283.json │ │ ├── output_2284.json │ │ ├── output_2285.json │ │ ├── output_2286.json │ │ ├── output_2287.json │ │ ├── output_2288.json │ │ ├── output_2289.json │ │ ├── output_2290.json │ │ ├── output_2291.json │ │ ├── output_2292.json │ │ ├── output_2293.json │ │ ├── output_2294.json │ │ ├── output_2295.json │ │ ├── output_2296.json │ │ ├── output_2297.json │ │ ├── output_2298.json │ │ ├── output_2299.json │ │ ├── output_2300.json │ │ ├── output_2301.json │ │ ├── output_2302.json │ │ ├── output_2303.json │ │ ├── output_2304.json │ │ ├── output_2305.json │ │ ├── output_2306.json │ │ ├── output_2307.json │ │ ├── output_2308.json │ │ ├── output_2309.json │ │ ├── output_2310.json │ │ ├── output_2311.json │ │ ├── output_2312.json │ │ ├── output_2313.json │ │ ├── output_2314.json │ │ ├── output_2315.json │ │ ├── output_2316.json │ │ ├── output_2317.json │ │ ├── output_2318.json │ │ ├── output_2319.json │ │ ├── output_2320.json │ │ ├── output_2321.json │ │ ├── output_2322.json │ │ ├── output_2323.json │ │ ├── output_2324.json │ │ ├── output_2325.json │ │ ├── output_2326.json │ │ ├── output_2327.json │ │ ├── output_2328.json │ │ ├── output_2329.json │ │ ├── output_2330.json │ │ ├── output_2331.json │ │ ├── output_2332.json │ │ ├── output_2333.json │ │ ├── output_2334.json │ │ ├── output_2335.json │ │ ├── output_2336.json │ │ ├── output_2337.json │ │ ├── output_2338.json │ │ ├── output_2339.json │ │ ├── output_2340.json │ │ ├── output_2341.json │ │ ├── output_2342.json │ │ ├── output_2343.json │ │ ├── output_2344.json │ │ ├── output_2345.json │ │ ├── output_2346.json │ │ ├── output_2347.json │ │ ├── output_2348.json │ │ ├── output_2349.json │ │ ├── output_2350.json │ │ ├── output_2351.json │ │ ├── output_2352.json │ │ ├── output_2353.json │ │ ├── output_2354.json │ │ ├── output_2355.json │ │ ├── output_2356.json │ │ ├── output_2357.json │ │ ├── output_2358.json │ │ ├── output_2359.json │ │ ├── output_2360.json │ │ ├── output_2361.json │ │ ├── output_2362.json │ │ ├── output_2363.json │ │ ├── output_2364.json │ │ ├── output_2365.json │ │ ├── output_2366.json │ │ ├── output_2367.json │ │ ├── output_2368.json │ │ ├── output_2369.json │ │ ├── output_2370.json │ │ ├── output_2371.json │ │ ├── output_2372.json │ │ ├── output_2373.json │ │ ├── output_2374.json │ │ ├── output_2375.json │ │ ├── output_2376.json │ │ ├── output_2377.json │ │ ├── output_2378.json │ │ ├── output_2379.json │ │ ├── output_2380.json │ │ ├── output_2381.json │ │ ├── output_2382.json │ │ ├── output_2383.json │ │ ├── output_2384.json │ │ ├── output_2385.json │ │ ├── output_2386.json │ │ ├── output_2387.json │ │ ├── output_2388.json │ │ ├── output_2389.json │ │ ├── output_2390.json │ │ ├── output_2391.json │ │ ├── output_2392.json │ │ ├── output_2393.json │ │ ├── output_2394.json │ │ ├── output_2395.json │ │ ├── output_2396.json │ │ ├── output_2397.json │ │ ├── output_2398.json │ │ ├── output_2399.json │ │ ├── output_2400.json │ │ ├── output_2401.json │ │ ├── output_2402.json │ │ ├── output_2403.json │ │ ├── output_2404.json │ │ ├── output_2405.json │ │ ├── output_2406.json │ │ ├── output_2407.json │ │ ├── output_2408.json │ │ ├── output_2409.json │ │ ├── output_2410.json │ │ ├── output_2411.json │ │ ├── output_2412.json │ │ ├── output_2413.json │ │ ├── output_2414.json │ │ ├── output_2415.json │ │ ├── output_2416.json │ │ ├── output_2417.json │ │ ├── output_2418.json │ │ ├── output_2419.json │ │ ├── output_2420.json │ │ ├── output_2421.json │ │ ├── output_2422.json │ │ ├── output_2423.json │ │ ├── output_2424.json │ │ ├── output_2425.json │ │ ├── output_2426.json │ │ ├── output_2427.json │ │ ├── output_2428.json │ │ ├── output_2429.json │ │ ├── output_2430.json │ │ ├── output_2431.json │ │ ├── output_2432.json │ │ ├── output_2433.json │ │ ├── output_2434.json │ │ ├── output_2435.json │ │ ├── output_2436.json │ │ ├── output_2437.json │ │ ├── output_2438.json │ │ ├── output_2439.json │ │ ├── output_2440.json │ │ ├── output_2441.json │ │ ├── output_2442.json │ │ ├── output_2443.json │ │ ├── output_2444.json │ │ ├── output_2445.json │ │ ├── output_2446.json │ │ ├── output_2447.json │ │ ├── output_2448.json │ │ ├── output_2449.json │ │ ├── output_2450.json │ │ ├── output_2451.json │ │ ├── output_2452.json │ │ ├── output_2453.json │ │ ├── output_2454.json │ │ ├── output_2455.json │ │ ├── output_2456.json │ │ ├── output_2457.json │ │ ├── output_2458.json │ │ ├── output_2459.json │ │ ├── output_2460.json │ │ ├── output_2461.json │ │ ├── output_2462.json │ │ ├── output_2463.json │ │ ├── output_2464.json │ │ ├── output_2465.json │ │ ├── output_2466.json │ │ ├── output_2467.json │ │ ├── output_2468.json │ │ ├── output_2469.json │ │ ├── output_2470.json │ │ ├── output_2471.json │ │ ├── output_2472.json │ │ ├── output_2473.json │ │ ├── output_2474.json │ │ ├── output_2475.json │ │ ├── output_2476.json │ │ ├── output_2477.json │ │ ├── output_2478.json │ │ ├── output_2479.json │ │ ├── output_2480.json │ │ ├── output_2481.json │ │ ├── output_2482.json │ │ ├── output_2483.json │ │ ├── output_2484.json │ │ ├── output_2485.json │ │ ├── output_2486.json │ │ ├── output_2487.json │ │ ├── output_2488.json │ │ ├── output_2489.json │ │ ├── output_2490.json │ │ ├── output_2491.json │ │ ├── output_2492.json │ │ ├── output_2493.json │ │ ├── output_2494.json │ │ ├── output_2495.json │ │ ├── output_2496.json │ │ ├── output_2497.json │ │ ├── output_2498.json │ │ ├── output_2499.json │ │ ├── output_2500.json │ │ ├── output_2501.json │ │ ├── output_2502.json │ │ ├── output_2503.json │ │ ├── output_2504.json │ │ ├── output_2505.json │ │ ├── output_2506.json │ │ ├── output_2507.json │ │ ├── output_2508.json │ │ ├── output_2509.json │ │ ├── output_2510.json │ │ ├── output_2511.json │ │ ├── output_2512.json │ │ ├── output_2513.json │ │ ├── output_2514.json │ │ ├── output_2515.json │ │ ├── output_2516.json │ │ ├── output_2517.json │ │ ├── output_2518.json │ │ ├── output_2519.json │ │ ├── output_2520.json │ │ ├── output_2521.json │ │ ├── output_2522.json │ │ ├── output_2523.json │ │ ├── output_2524.json │ │ ├── output_2525.json │ │ ├── output_2526.json │ │ ├── output_2527.json │ │ ├── output_2528.json │ │ ├── output_2529.json │ │ ├── output_2530.json │ │ ├── output_2531.json │ │ ├── output_2532.json │ │ ├── output_2533.json │ │ ├── output_2534.json │ │ ├── output_2535.json │ │ ├── output_2536.json │ │ ├── output_2537.json │ │ ├── output_2538.json │ │ ├── output_2539.json │ │ ├── output_2540.json │ │ ├── output_2541.json │ │ ├── output_2542.json │ │ ├── output_2543.json │ │ ├── output_2544.json │ │ ├── output_2545.json │ │ ├── output_2546.json │ │ ├── output_2547.json │ │ ├── output_2548.json │ │ ├── output_2549.json │ │ ├── output_2550.json │ │ ├── output_2551.json │ │ ├── output_2552.json │ │ ├── output_2553.json │ │ ├── output_2554.json │ │ ├── output_2555.json │ │ ├── output_2556.json │ │ ├── output_2557.json │ │ ├── output_2558.json │ │ ├── output_2559.json │ │ ├── output_2560.json │ │ ├── output_2561.json │ │ ├── output_2562.json │ │ ├── output_2563.json │ │ ├── output_2564.json │ │ ├── output_2565.json │ │ ├── output_2566.json │ │ ├── output_2567.json │ │ ├── output_2568.json │ │ ├── output_2569.json │ │ ├── output_2570.json │ │ ├── output_2571.json │ │ ├── output_2572.json │ │ ├── output_2573.json │ │ ├── output_2574.json │ │ ├── output_2575.json │ │ ├── output_2576.json │ │ ├── output_2577.json │ │ ├── output_2578.json │ │ ├── output_2579.json │ │ ├── output_2580.json │ │ ├── output_2581.json │ │ ├── output_2582.json │ │ ├── output_2583.json │ │ ├── output_2584.json │ │ ├── output_2585.json │ │ ├── output_2586.json │ │ ├── output_2587.json │ │ ├── output_2588.json │ │ ├── output_2589.json │ │ ├── output_2590.json │ │ ├── output_2591.json │ │ ├── output_2592.json │ │ ├── output_2593.json │ │ ├── output_2594.json │ │ ├── output_2595.json │ │ ├── output_2596.json │ │ ├── output_2597.json │ │ ├── output_2598.json │ │ ├── output_2599.json │ │ ├── output_2600.json │ │ ├── output_2601.json │ │ ├── output_2602.json │ │ ├── output_2603.json │ │ ├── output_2604.json │ │ ├── output_2605.json │ │ ├── output_2606.json │ │ ├── output_2607.json │ │ ├── output_2608.json │ │ ├── output_2609.json │ │ ├── output_2610.json │ │ ├── output_2611.json │ │ ├── output_2612.json │ │ ├── output_2613.json │ │ ├── output_2614.json │ │ ├── output_2615.json │ │ ├── output_2616.json │ │ ├── output_2617.json │ │ ├── output_2618.json │ │ ├── output_2619.json │ │ ├── output_2620.json │ │ ├── output_2621.json │ │ ├── output_2622.json │ │ ├── output_2623.json │ │ ├── output_2624.json │ │ ├── output_2625.json │ │ ├── output_2626.json │ │ ├── output_2627.json │ │ ├── output_2628.json │ │ ├── output_2629.json │ │ ├── output_2630.json │ │ ├── output_2631.json │ │ ├── output_2632.json │ │ ├── output_2633.json │ │ ├── output_2634.json │ │ ├── output_2635.json │ │ ├── output_2636.json │ │ ├── output_2637.json │ │ ├── output_2638.json │ │ ├── output_2639.json │ │ ├── output_2640.json │ │ ├── output_2641.json │ │ ├── output_2642.json │ │ ├── output_2643.json │ │ ├── output_2644.json │ │ ├── output_2645.json │ │ ├── output_2646.json │ │ ├── output_2647.json │ │ ├── output_2648.json │ │ ├── output_2649.json │ │ ├── output_2650.json │ │ ├── output_2651.json │ │ ├── output_2652.json │ │ ├── output_2653.json │ │ ├── output_2654.json │ │ ├── output_2655.json │ │ ├── output_2656.json │ │ ├── output_2657.json │ │ ├── output_2658.json │ │ ├── output_2659.json │ │ ├── output_2660.json │ │ ├── output_2661.json │ │ ├── output_2662.json │ │ ├── output_2663.json │ │ ├── output_2664.json │ │ ├── output_2665.json │ │ ├── output_2666.json │ │ ├── output_2667.json │ │ ├── output_2668.json │ │ ├── output_2669.json │ │ ├── output_2670.json │ │ ├── output_2671.json │ │ ├── output_2672.json │ │ ├── output_2673.json │ │ ├── output_2674.json │ │ ├── output_2675.json │ │ ├── output_2676.json │ │ ├── output_2677.json │ │ ├── output_2678.json │ │ ├── output_2679.json │ │ ├── output_2680.json │ │ ├── output_2681.json │ │ ├── output_2682.json │ │ ├── output_2683.json │ │ ├── output_2684.json │ │ ├── output_2685.json │ │ ├── output_2686.json │ │ ├── output_2687.json │ │ ├── output_2688.json │ │ ├── output_2689.json │ │ ├── output_2690.json │ │ ├── output_2691.json │ │ ├── output_2692.json │ │ ├── output_2693.json │ │ ├── output_2694.json │ │ ├── output_2695.json │ │ ├── output_2696.json │ │ ├── output_2697.json │ │ ├── output_2698.json │ │ ├── output_2699.json │ │ ├── output_2700.json │ │ ├── output_2701.json │ │ ├── output_2702.json │ │ ├── output_2703.json │ │ ├── output_2704.json │ │ ├── output_2705.json │ │ ├── output_2706.json │ │ ├── output_2707.json │ │ ├── output_2708.json │ │ ├── output_2709.json │ │ ├── output_2710.json │ │ ├── output_2711.json │ │ ├── output_2712.json │ │ ├── output_2713.json │ │ ├── output_2714.json │ │ ├── output_2715.json │ │ ├── output_2716.json │ │ ├── output_2717.json │ │ ├── output_2718.json │ │ ├── output_2719.json │ │ ├── output_2720.json │ │ ├── output_2721.json │ │ ├── output_2722.json │ │ ├── output_2723.json │ │ ├── output_2724.json │ │ ├── output_2725.json │ │ ├── output_2726.json │ │ ├── output_2727.json │ │ ├── output_2728.json │ │ ├── output_2729.json │ │ ├── output_2730.json │ │ ├── output_2731.json │ │ ├── output_2732.json │ │ ├── output_2733.json │ │ ├── output_2734.json │ │ ├── output_2735.json │ │ ├── output_2736.json │ │ ├── output_2737.json │ │ ├── output_2738.json │ │ ├── output_2739.json │ │ ├── output_2740.json │ │ ├── output_2741.json │ │ ├── output_2742.json │ │ ├── output_2743.json │ │ ├── output_2744.json │ │ ├── output_2745.json │ │ ├── output_2746.json │ │ ├── output_2747.json │ │ ├── output_2748.json │ │ ├── output_2749.json │ │ ├── output_2750.json │ │ ├── output_2751.json │ │ ├── output_2752.json │ │ ├── output_2753.json │ │ ├── output_2754.json │ │ ├── output_2755.json │ │ ├── output_2756.json │ │ ├── output_2757.json │ │ ├── output_2758.json │ │ ├── output_2759.json │ │ ├── output_2760.json │ │ ├── output_2761.json │ │ ├── output_2762.json │ │ ├── output_2763.json │ │ ├── output_2764.json │ │ ├── output_2765.json │ │ ├── output_2766.json │ │ ├── output_2767.json │ │ ├── output_2768.json │ │ ├── output_2769.json │ │ ├── output_2770.json │ │ ├── output_2771.json │ │ ├── output_2772.json │ │ ├── output_2773.json │ │ ├── output_2774.json │ │ ├── output_2775.json │ │ ├── output_2776.json │ │ ├── output_2777.json │ │ ├── output_2778.json │ │ ├── output_2779.json │ │ ├── output_2780.json │ │ ├── output_2781.json │ │ ├── output_2782.json │ │ ├── output_2783.json │ │ ├── output_2784.json │ │ ├── output_2785.json │ │ ├── output_2786.json │ │ ├── output_2787.json │ │ ├── output_2788.json │ │ ├── output_2789.json │ │ ├── output_2790.json │ │ ├── output_2791.json │ │ ├── output_2792.json │ │ ├── output_2793.json │ │ ├── output_2794.json │ │ ├── output_2795.json │ │ ├── output_2796.json │ │ ├── output_2797.json │ │ ├── output_2798.json │ │ ├── output_2799.json │ │ ├── output_2800.json │ │ ├── output_2801.json │ │ ├── output_2802.json │ │ ├── output_2803.json │ │ ├── output_2804.json │ │ ├── output_2805.json │ │ ├── output_2806.json │ │ ├── output_2807.json │ │ ├── output_2808.json │ │ ├── output_2809.json │ │ ├── output_2810.json │ │ ├── output_2811.json │ │ ├── output_2812.json │ │ ├── output_2813.json │ │ ├── output_2814.json │ │ ├── output_2815.json │ │ ├── output_2816.json │ │ ├── output_2817.json │ │ ├── output_2818.json │ │ ├── output_2819.json │ │ ├── output_2820.json │ │ ├── output_2821.json │ │ ├── output_2822.json │ │ ├── output_2823.json │ │ ├── output_2824.json │ │ ├── output_2825.json │ │ ├── output_2826.json │ │ ├── output_2827.json │ │ ├── output_2828.json │ │ ├── output_2829.json │ │ ├── output_2830.json │ │ ├── output_2831.json │ │ ├── output_2832.json │ │ ├── output_2833.json │ │ ├── output_2834.json │ │ ├── output_2835.json │ │ ├── output_2836.json │ │ ├── output_2837.json │ │ ├── output_2838.json │ │ ├── output_2839.json │ │ ├── output_2840.json │ │ ├── output_2841.json │ │ ├── output_2842.json │ │ ├── output_2843.json │ │ ├── output_2844.json │ │ ├── output_2845.json │ │ ├── output_2846.json │ │ ├── output_2847.json │ │ ├── output_2848.json │ │ ├── output_2849.json │ │ ├── output_2850.json │ │ ├── output_2851.json │ │ ├── output_2852.json │ │ ├── output_2853.json │ │ ├── output_2854.json │ │ ├── output_2855.json │ │ ├── output_2856.json │ │ ├── output_2857.json │ │ ├── output_2858.json │ │ ├── output_2859.json │ │ ├── output_2860.json │ │ ├── output_2861.json │ │ ├── output_2862.json │ │ ├── output_2863.json │ │ ├── output_2864.json │ │ ├── output_2865.json │ │ ├── output_2866.json │ │ ├── output_2867.json │ │ ├── output_2868.json │ │ ├── output_2869.json │ │ ├── output_2870.json │ │ ├── output_2871.json │ │ ├── output_2872.json │ │ ├── output_2873.json │ │ ├── output_2874.json │ │ ├── output_2875.json │ │ ├── output_2876.json │ │ ├── output_2877.json │ │ ├── output_2878.json │ │ ├── output_2879.json │ │ ├── output_2880.json │ │ ├── output_2881.json │ │ ├── output_2882.json │ │ ├── output_2883.json │ │ ├── output_2884.json │ │ ├── output_2885.json │ │ ├── output_2886.json │ │ ├── output_2887.json │ │ ├── output_2888.json │ │ ├── output_2889.json │ │ ├── output_2890.json │ │ ├── output_2891.json │ │ ├── output_2892.json │ │ ├── output_2893.json │ │ ├── output_2894.json │ │ ├── output_2895.json │ │ ├── output_2896.json │ │ ├── output_2897.json │ │ ├── output_2898.json │ │ ├── output_2899.json │ │ ├── output_2900.json │ │ ├── output_2901.json │ │ ├── output_2902.json │ │ ├── output_2903.json │ │ ├── output_2904.json │ │ ├── output_2905.json │ │ ├── output_2906.json │ │ ├── output_2907.json │ │ ├── output_2908.json │ │ ├── output_2909.json │ │ ├── output_2910.json │ │ ├── output_2911.json │ │ ├── output_2912.json │ │ ├── output_2913.json │ │ ├── output_2914.json │ │ ├── output_2915.json │ │ ├── output_2916.json │ │ ├── output_2917.json │ │ ├── output_2918.json │ │ ├── output_2919.json │ │ ├── output_2920.json │ │ ├── output_2921.json │ │ ├── output_2922.json │ │ ├── output_2923.json │ │ ├── output_2924.json │ │ ├── output_2925.json │ │ ├── output_2926.json │ │ ├── output_2927.json │ │ ├── output_2928.json │ │ ├── output_2929.json │ │ ├── output_2930.json │ │ ├── output_2931.json │ │ ├── output_2932.json │ │ ├── output_2933.json │ │ ├── output_2934.json │ │ ├── output_2935.json │ │ ├── output_2936.json │ │ ├── output_2937.json │ │ ├── output_2938.json │ │ ├── output_2939.json │ │ ├── output_2940.json │ │ ├── output_2941.json │ │ ├── output_2942.json │ │ ├── output_2943.json │ │ ├── output_2944.json │ │ ├── output_2945.json │ │ ├── output_2946.json │ │ ├── output_2947.json │ │ ├── output_2948.json │ │ ├── output_2949.json │ │ ├── output_2950.json │ │ ├── output_2951.json │ │ ├── output_2952.json │ │ ├── output_2953.json │ │ ├── output_2954.json │ │ ├── output_2955.json │ │ ├── output_2956.json │ │ ├── output_2957.json │ │ ├── output_2958.json │ │ ├── output_2959.json │ │ ├── output_2960.json │ │ ├── output_2961.json │ │ ├── output_2962.json │ │ ├── output_2963.json │ │ ├── output_2964.json │ │ ├── output_2965.json │ │ ├── output_2966.json │ │ ├── output_2967.json │ │ ├── output_2968.json │ │ ├── output_2969.json │ │ ├── output_2970.json │ │ ├── output_2971.json │ │ ├── output_2972.json │ │ ├── output_2973.json │ │ ├── output_2974.json │ │ ├── output_2975.json │ │ ├── output_2976.json │ │ ├── output_2977.json │ │ ├── output_2978.json │ │ ├── output_2979.json │ │ ├── output_2980.json │ │ ├── output_2981.json │ │ ├── output_2982.json │ │ ├── output_2983.json │ │ ├── output_2984.json │ │ ├── output_2985.json │ │ ├── output_2986.json │ │ ├── output_2987.json │ │ ├── output_2988.json │ │ ├── output_2989.json │ │ ├── output_2990.json │ │ ├── output_2991.json │ │ ├── output_2992.json │ │ ├── output_2993.json │ │ ├── output_2994.json │ │ ├── output_2995.json │ │ ├── output_2996.json │ │ ├── output_2997.json │ │ ├── output_2998.json │ │ ├── output_2999.json │ │ ├── output_3000.json │ │ ├── output_3001.json │ │ ├── output_3002.json │ │ ├── output_3003.json │ │ ├── output_3004.json │ │ ├── output_3005.json │ │ ├── output_3006.json │ │ ├── output_3007.json │ │ ├── output_3008.json │ │ ├── output_3009.json │ │ ├── output_3010.json │ │ ├── output_3011.json │ │ ├── output_3012.json │ │ ├── output_3013.json │ │ ├── output_3014.json │ │ ├── output_3015.json │ │ ├── output_3016.json │ │ ├── output_3017.json │ │ ├── output_3018.json │ │ ├── output_3019.json │ │ ├── output_3020.json │ │ ├── output_3021.json │ │ ├── output_3022.json │ │ ├── output_3023.json │ │ ├── output_3024.json │ │ ├── output_3025.json │ │ ├── output_3026.json │ │ ├── output_3027.json │ │ ├── output_3028.json │ │ ├── output_3029.json │ │ ├── output_3030.json │ │ ├── output_3031.json │ │ ├── output_3032.json │ │ ├── output_3033.json │ │ ├── output_3034.json │ │ ├── output_3035.json │ │ ├── output_3036.json │ │ ├── output_3037.json │ │ ├── output_3038.json │ │ ├── output_3039.json │ │ ├── output_3040.json │ │ ├── output_3041.json │ │ ├── output_3042.json │ │ ├── output_3043.json │ │ ├── output_3044.json │ │ ├── output_3045.json │ │ ├── output_3046.json │ │ ├── output_3047.json │ │ ├── output_3048.json │ │ ├── output_3049.json │ │ ├── output_3050.json │ │ ├── output_3051.json │ │ ├── output_3052.json │ │ ├── output_3053.json │ │ ├── output_3054.json │ │ ├── output_3055.json │ │ ├── output_3056.json │ │ ├── output_3057.json │ │ ├── output_3058.json │ │ ├── output_3059.json │ │ ├── output_3060.json │ │ ├── output_3061.json │ │ ├── output_3062.json │ │ ├── output_3063.json │ │ ├── output_3064.json │ │ ├── output_3065.json │ │ ├── output_3066.json │ │ ├── output_3067.json │ │ ├── output_3068.json │ │ ├── output_3069.json │ │ ├── output_3070.json │ │ ├── output_3071.json │ │ ├── output_3072.json │ │ ├── output_3073.json │ │ ├── output_3074.json │ │ ├── output_3075.json │ │ ├── output_3076.json │ │ ├── output_3077.json │ │ ├── output_3078.json │ │ ├── output_3079.json │ │ ├── output_3080.json │ │ ├── output_3081.json │ │ ├── output_3082.json │ │ ├── output_3083.json │ │ ├── output_3084.json │ │ ├── output_3085.json │ │ ├── output_3086.json │ │ ├── output_3087.json │ │ ├── output_3088.json │ │ ├── output_3089.json │ │ ├── output_3090.json │ │ ├── output_3091.json │ │ ├── output_3092.json │ │ ├── output_3093.json │ │ ├── output_3094.json │ │ ├── output_3095.json │ │ ├── output_3096.json │ │ ├── output_3097.json │ │ ├── output_3098.json │ │ ├── output_3099.json │ │ ├── output_3100.json │ │ ├── output_3101.json │ │ ├── output_3102.json │ │ ├── output_3103.json │ │ ├── output_3104.json │ │ ├── output_3105.json │ │ ├── output_3106.json │ │ ├── output_3107.json │ │ ├── output_3108.json │ │ ├── output_3109.json │ │ ├── output_3110.json │ │ ├── output_3111.json │ │ ├── output_3112.json │ │ ├── output_3113.json │ │ ├── output_3114.json │ │ ├── output_3115.json │ │ ├── output_3116.json │ │ ├── output_3117.json │ │ ├── output_3118.json │ │ ├── output_3119.json │ │ ├── output_3120.json │ │ ├── output_3121.json │ │ ├── output_3122.json │ │ ├── output_3123.json │ │ ├── output_3124.json │ │ ├── output_3125.json │ │ ├── output_3126.json │ │ ├── output_3127.json │ │ ├── output_3128.json │ │ ├── output_3129.json │ │ ├── output_3130.json │ │ ├── output_3131.json │ │ ├── output_3132.json │ │ ├── output_3133.json │ │ ├── output_3134.json │ │ ├── output_3135.json │ │ ├── output_3136.json │ │ ├── output_3137.json │ │ ├── output_3138.json │ │ ├── output_3139.json │ │ ├── output_3140.json │ │ ├── output_3141.json │ │ ├── output_3142.json │ │ ├── output_3143.json │ │ ├── output_3144.json │ │ ├── output_3145.json │ │ ├── output_3146.json │ │ ├── output_3147.json │ │ ├── output_3148.json │ │ ├── output_3149.json │ │ ├── output_3150.json │ │ ├── output_3151.json │ │ ├── output_3152.json │ │ ├── output_3153.json │ │ ├── output_3154.json │ │ ├── output_3155.json │ │ ├── output_3156.json │ │ ├── output_3157.json │ │ ├── output_3158.json │ │ ├── output_3159.json │ │ ├── output_3160.json │ │ ├── output_3161.json │ │ ├── output_3162.json │ │ ├── output_3163.json │ │ ├── output_3164.json │ │ ├── output_3165.json │ │ ├── output_3166.json │ │ ├── output_3167.json │ │ ├── output_3168.json │ │ ├── output_3169.json │ │ ├── output_3170.json │ │ ├── output_3171.json │ │ ├── output_3172.json │ │ ├── output_3173.json │ │ ├── output_3174.json │ │ ├── output_3175.json │ │ ├── output_3176.json │ │ ├── output_3177.json │ │ ├── output_3178.json │ │ ├── output_3179.json │ │ ├── output_3180.json │ │ ├── output_3181.json │ │ ├── output_3182.json │ │ ├── output_3183.json │ │ ├── output_3184.json │ │ ├── output_3185.json │ │ ├── output_3186.json │ │ ├── output_3187.json │ │ ├── output_3188.json │ │ ├── output_3189.json │ │ ├── output_3190.json │ │ ├── output_3191.json │ │ ├── output_3192.json │ │ ├── output_3193.json │ │ ├── output_3194.json │ │ ├── output_3195.json │ │ ├── output_3196.json │ │ ├── output_3197.json │ │ ├── output_3198.json │ │ ├── output_3199.json │ │ ├── output_3200.json │ │ ├── output_3201.json │ │ ├── output_3202.json │ │ ├── output_3203.json │ │ ├── output_3204.json │ │ ├── output_3205.json │ │ ├── output_3206.json │ │ ├── output_3207.json │ │ ├── output_3208.json │ │ ├── output_3209.json │ │ ├── output_3210.json │ │ ├── output_3211.json │ │ ├── output_3212.json │ │ ├── output_3213.json │ │ ├── output_3214.json │ │ ├── output_3215.json │ │ ├── output_3216.json │ │ ├── output_3217.json │ │ ├── output_3218.json │ │ ├── output_3219.json │ │ ├── output_3220.json │ │ ├── output_3221.json │ │ ├── output_3222.json │ │ ├── output_3223.json │ │ ├── output_3224.json │ │ ├── output_3225.json │ │ ├── output_3226.json │ │ ├── output_3227.json │ │ ├── output_3228.json │ │ ├── output_3229.json │ │ ├── output_3230.json │ │ ├── output_3231.json │ │ ├── output_3232.json │ │ ├── output_3233.json │ │ ├── output_3234.json │ │ ├── output_3235.json │ │ ├── output_3236.json │ │ ├── output_3237.json │ │ ├── output_3238.json │ │ ├── output_3239.json │ │ ├── output_3240.json │ │ ├── output_3241.json │ │ ├── output_3242.json │ │ ├── output_3243.json │ │ ├── output_3244.json │ │ ├── output_3245.json │ │ ├── output_3246.json │ │ ├── output_3247.json │ │ ├── output_3248.json │ │ ├── output_3249.json │ │ ├── output_3250.json │ │ ├── output_3251.json │ │ ├── output_3252.json │ │ ├── output_3253.json │ │ ├── output_3254.json │ │ ├── output_3255.json │ │ ├── output_3256.json │ │ ├── output_3257.json │ │ ├── output_3258.json │ │ ├── output_3259.json │ │ ├── output_3260.json │ │ ├── output_3261.json │ │ ├── output_3262.json │ │ ├── output_3263.json │ │ ├── output_3264.json │ │ ├── output_3265.json │ │ ├── output_3266.json │ │ ├── output_3267.json │ │ ├── output_3268.json │ │ ├── output_3269.json │ │ ├── output_3270.json │ │ ├── output_3271.json │ │ ├── output_3272.json │ │ ├── output_3273.json │ │ ├── output_3274.json │ │ ├── output_3275.json │ │ ├── output_3276.json │ │ ├── output_3277.json │ │ ├── output_3278.json │ │ ├── output_3279.json │ │ ├── output_3280.json │ │ ├── output_3281.json │ │ ├── output_3282.json │ │ ├── output_3283.json │ │ ├── output_3284.json │ │ ├── output_3285.json │ │ ├── output_3286.json │ │ ├── output_3287.json │ │ ├── output_3288.json │ │ ├── output_3289.json │ │ ├── output_3290.json │ │ ├── output_3291.json │ │ ├── output_3292.json │ │ ├── output_3293.json │ │ ├── output_3294.json │ │ ├── output_3295.json │ │ ├── output_3296.json │ │ ├── output_3297.json │ │ ├── output_3298.json │ │ ├── output_3299.json │ │ ├── output_3300.json │ │ ├── output_3301.json │ │ ├── output_3302.json │ │ ├── output_3303.json │ │ ├── output_3304.json │ │ ├── output_3305.json │ │ ├── output_3306.json │ │ ├── output_3307.json │ │ ├── output_3308.json │ │ ├── output_3309.json │ │ ├── output_3310.json │ │ ├── output_3311.json │ │ ├── output_3312.json │ │ ├── output_3313.json │ │ ├── output_3314.json │ │ ├── output_3315.json │ │ ├── output_3316.json │ │ ├── output_3317.json │ │ ├── output_3318.json │ │ ├── output_3319.json │ │ ├── output_3320.json │ │ ├── output_3321.json │ │ ├── output_3322.json │ │ ├── output_3323.json │ │ ├── output_3324.json │ │ ├── output_3325.json │ │ ├── output_3326.json │ │ ├── output_3327.json │ │ ├── output_3328.json │ │ ├── output_3329.json │ │ ├── output_3330.json │ │ ├── output_3331.json │ │ ├── output_3332.json │ │ ├── output_3333.json │ │ ├── output_3334.json │ │ ├── output_3335.json │ │ ├── output_3336.json │ │ ├── output_3337.json │ │ ├── output_3338.json │ │ ├── output_3339.json │ │ ├── output_3340.json │ │ ├── output_3341.json │ │ ├── output_3342.json │ │ ├── output_3343.json │ │ ├── output_3344.json │ │ ├── output_3345.json │ │ ├── output_3346.json │ │ ├── output_3347.json │ │ ├── output_3348.json │ │ ├── output_3349.json │ │ ├── output_3350.json │ │ ├── output_3351.json │ │ ├── output_3352.json │ │ ├── output_3353.json │ │ ├── output_3354.json │ │ ├── output_3355.json │ │ ├── output_3356.json │ │ ├── output_3357.json │ │ ├── output_3358.json │ │ ├── output_3359.json │ │ ├── output_3360.json │ │ ├── output_3361.json │ │ ├── output_3362.json │ │ ├── output_3363.json │ │ ├── output_3364.json │ │ ├── output_3365.json │ │ ├── output_3366.json │ │ ├── output_3367.json │ │ ├── output_3368.json │ │ ├── output_3369.json │ │ ├── output_3370.json │ │ ├── output_3371.json │ │ ├── output_3372.json │ │ ├── output_3373.json │ │ ├── output_3374.json │ │ ├── output_3375.json │ │ ├── output_3376.json │ │ ├── output_3377.json │ │ ├── output_3378.json │ │ ├── output_3379.json │ │ ├── output_3380.json │ │ ├── output_3381.json │ │ ├── output_3382.json │ │ ├── output_3383.json │ │ ├── output_3384.json │ │ ├── output_3385.json │ │ ├── output_3386.json │ │ ├── output_3387.json │ │ ├── output_3388.json │ │ ├── output_3389.json │ │ ├── output_3390.json │ │ ├── output_3391.json │ │ ├── output_3392.json │ │ ├── output_3393.json │ │ ├── output_3394.json │ │ ├── output_3395.json │ │ ├── output_3396.json │ │ ├── output_3397.json │ │ ├── output_3398.json │ │ ├── output_3399.json │ │ ├── output_3400.json │ │ ├── output_3401.json │ │ ├── output_3402.json │ │ ├── output_3403.json │ │ ├── output_3404.json │ │ ├── output_3405.json │ │ ├── output_3406.json │ │ ├── output_3407.json │ │ ├── output_3408.json │ │ ├── output_3409.json │ │ ├── output_3410.json │ │ ├── output_3411.json │ │ ├── output_3412.json │ │ ├── output_3413.json │ │ ├── output_3414.json │ │ ├── output_3415.json │ │ ├── output_3416.json │ │ ├── output_3417.json │ │ ├── output_3418.json │ │ ├── output_3419.json │ │ ├── output_3420.json │ │ ├── output_3421.json │ │ ├── output_3422.json │ │ ├── output_3423.json │ │ ├── output_3424.json │ │ ├── output_3425.json │ │ ├── output_3426.json │ │ ├── output_3427.json │ │ ├── output_3428.json │ │ ├── output_3429.json │ │ ├── output_3430.json │ │ ├── output_3431.json │ │ ├── output_3432.json │ │ ├── output_3433.json │ │ ├── output_3434.json │ │ ├── output_3435.json │ │ ├── output_3436.json │ │ ├── output_3437.json │ │ ├── output_3438.json │ │ ├── output_3439.json │ │ ├── output_3440.json │ │ ├── output_3441.json │ │ ├── output_3442.json │ │ ├── output_3443.json │ │ ├── output_3444.json │ │ ├── output_3445.json │ │ ├── output_3446.json │ │ ├── output_3447.json │ │ ├── output_3448.json │ │ ├── output_3449.json │ │ ├── output_3450.json │ │ ├── output_3451.json │ │ ├── output_3452.json │ │ ├── output_3453.json │ │ ├── output_3454.json │ │ ├── output_3455.json │ │ ├── output_3456.json │ │ ├── output_3457.json │ │ ├── output_3458.json │ │ ├── output_3459.json │ │ ├── output_3460.json │ │ ├── output_3461.json │ │ ├── output_3462.json │ │ ├── output_3463.json │ │ ├── output_3464.json │ │ ├── output_3465.json │ │ ├── output_3466.json │ │ ├── output_3467.json │ │ ├── output_3468.json │ │ ├── output_3469.json │ │ ├── output_3470.json │ │ ├── output_3471.json │ │ ├── output_3472.json │ │ ├── output_3473.json │ │ ├── output_3474.json │ │ ├── output_3475.json │ │ ├── output_3476.json │ │ ├── output_3477.json │ │ ├── output_3478.json │ │ ├── output_3479.json │ │ ├── output_3480.json │ │ ├── output_3481.json │ │ ├── output_3482.json │ │ ├── output_3483.json │ │ ├── output_3484.json │ │ ├── output_3485.json │ │ ├── output_3486.json │ │ ├── output_3487.json │ │ ├── output_3488.json │ │ ├── output_3489.json │ │ ├── output_3490.json │ │ ├── output_3491.json │ │ ├── output_3492.json │ │ ├── output_3493.json │ │ ├── output_3494.json │ │ ├── output_3495.json │ │ ├── output_3496.json │ │ ├── output_3497.json │ │ ├── output_3498.json │ │ ├── output_3499.json │ │ ├── output_3500.json │ │ ├── output_3501.json │ │ ├── output_3502.json │ │ ├── output_3503.json │ │ ├── output_3504.json │ │ ├── output_3505.json │ │ ├── output_3506.json │ │ ├── output_3507.json │ │ ├── output_3508.json │ │ ├── output_3509.json │ │ ├── output_3510.json │ │ ├── output_3511.json │ │ ├── output_3512.json │ │ ├── output_3513.json │ │ ├── output_3514.json │ │ ├── output_3515.json │ │ ├── output_3516.json │ │ ├── output_3517.json │ │ ├── output_3518.json │ │ ├── output_3519.json │ │ ├── output_3520.json │ │ ├── output_3521.json │ │ ├── output_3522.json │ │ ├── output_3523.json │ │ ├── output_3524.json │ │ ├── output_3525.json │ │ ├── output_3526.json │ │ ├── output_3527.json │ │ ├── output_3528.json │ │ ├── output_3529.json │ │ ├── output_3530.json │ │ ├── output_3531.json │ │ ├── output_3532.json │ │ ├── output_3533.json │ │ ├── output_3534.json │ │ ├── output_3535.json │ │ ├── output_3536.json │ │ ├── output_3537.json │ │ ├── output_3538.json │ │ ├── output_3539.json │ │ ├── output_3540.json │ │ ├── output_3541.json │ │ ├── output_3542.json │ │ ├── output_3543.json │ │ ├── output_3544.json │ │ ├── output_3545.json │ │ ├── output_3546.json │ │ ├── output_3547.json │ │ ├── output_3548.json │ │ ├── output_3549.json │ │ ├── output_3550.json │ │ ├── output_3551.json │ │ ├── output_3552.json │ │ ├── output_3553.json │ │ ├── output_3554.json │ │ ├── output_3555.json │ │ ├── output_3556.json │ │ ├── output_3557.json │ │ ├── output_3558.json │ │ ├── output_3559.json │ │ ├── output_3560.json │ │ ├── output_3561.json │ │ ├── output_3562.json │ │ ├── output_3563.json │ │ ├── output_3564.json │ │ ├── output_3565.json │ │ ├── output_3566.json │ │ ├── output_3567.json │ │ ├── output_3568.json │ │ ├── output_3569.json │ │ ├── output_3570.json │ │ ├── output_3571.json │ │ ├── output_3572.json │ │ ├── output_3573.json │ │ ├── output_3574.json │ │ ├── output_3575.json │ │ ├── output_3576.json │ │ ├── output_3577.json │ │ ├── output_3578.json │ │ ├── output_3579.json │ │ ├── output_3580.json │ │ ├── output_3581.json │ │ ├── output_3582.json │ │ ├── output_3583.json │ │ ├── output_3584.json │ │ ├── output_3585.json │ │ ├── output_3586.json │ │ ├── output_3587.json │ │ ├── output_3588.json │ │ ├── output_3589.json │ │ ├── output_3590.json │ │ ├── output_3591.json │ │ ├── output_3592.json │ │ ├── output_3593.json │ │ ├── output_3594.json │ │ ├── output_3595.json │ │ ├── output_3596.json │ │ ├── output_3597.json │ │ ├── output_3598.json │ │ ├── output_3599.json │ │ ├── output_3600.json │ │ ├── output_3601.json │ │ ├── output_3602.json │ │ ├── output_3603.json │ │ ├── output_3604.json │ │ ├── output_3605.json │ │ ├── output_3606.json │ │ ├── output_3607.json │ │ ├── output_3608.json │ │ ├── output_3609.json │ │ ├── output_3610.json │ │ ├── output_3611.json │ │ ├── output_3612.json │ │ ├── output_3613.json │ │ ├── output_3614.json │ │ ├── output_3615.json │ │ ├── output_3616.json │ │ ├── output_3617.json │ │ ├── output_3618.json │ │ ├── output_3619.json │ │ ├── output_3620.json │ │ ├── output_3621.json │ │ ├── output_3622.json │ │ ├── output_3623.json │ │ ├── output_3624.json │ │ ├── output_3625.json │ │ ├── output_3626.json │ │ ├── output_3627.json │ │ ├── output_3628.json │ │ ├── output_3629.json │ │ ├── output_3630.json │ │ ├── output_3631.json │ │ ├── output_3632.json │ │ ├── output_3633.json │ │ ├── output_3634.json │ │ ├── output_3635.json │ │ ├── output_3636.json │ │ ├── output_3637.json │ │ ├── output_3638.json │ │ ├── output_3639.json │ │ ├── output_3640.json │ │ ├── output_3641.json │ │ ├── output_3642.json │ │ ├── output_3643.json │ │ ├── output_3644.json │ │ ├── output_3645.json │ │ ├── output_3646.json │ │ ├── output_3647.json │ │ ├── output_3648.json │ │ ├── output_3649.json │ │ ├── output_3650.json │ │ ├── output_3651.json │ │ ├── output_3652.json │ │ ├── output_3653.json │ │ ├── output_3654.json │ │ ├── output_3655.json │ │ ├── output_3656.json │ │ ├── output_3657.json │ │ ├── output_3658.json │ │ ├── output_3659.json │ │ ├── output_3660.json │ │ ├── output_3661.json │ │ ├── output_3662.json │ │ ├── output_3663.json │ │ ├── output_3664.json │ │ ├── output_3665.json │ │ ├── output_3666.json │ │ ├── output_3667.json │ │ ├── output_3668.json │ │ ├── output_3669.json │ │ ├── output_3670.json │ │ ├── output_3671.json │ │ ├── output_3672.json │ │ ├── output_3673.json │ │ ├── output_3674.json │ │ ├── output_3675.json │ │ ├── output_3676.json │ │ ├── output_3677.json │ │ ├── output_3678.json │ │ ├── output_3679.json │ │ ├── output_3680.json │ │ ├── output_3681.json │ │ ├── output_3682.json │ │ ├── output_3683.json │ │ ├── output_3684.json │ │ ├── output_3685.json │ │ ├── output_3686.json │ │ ├── output_3687.json │ │ ├── output_3688.json │ │ ├── output_3689.json │ │ ├── output_3690.json │ │ ├── output_3691.json │ │ ├── output_3692.json │ │ ├── output_3693.json │ │ ├── output_3694.json │ │ ├── output_3695.json │ │ ├── output_3696.json │ │ ├── output_3697.json │ │ ├── output_3698.json │ │ ├── output_3699.json │ │ ├── output_3700.json │ │ ├── output_3701.json │ │ ├── output_3702.json │ │ ├── output_3703.json │ │ ├── output_3704.json │ │ ├── output_3705.json │ │ ├── output_3706.json │ │ ├── output_3707.json │ │ ├── output_3708.json │ │ ├── output_3709.json │ │ ├── output_3710.json │ │ ├── output_3711.json │ │ ├── output_3712.json │ │ ├── output_3713.json │ │ ├── output_3714.json │ │ ├── output_3715.json │ │ ├── output_3716.json │ │ ├── output_3717.json │ │ ├── output_3718.json │ │ ├── output_3719.json │ │ ├── output_3720.json │ │ ├── output_3721.json │ │ ├── output_3722.json │ │ ├── output_3723.json │ │ ├── output_3724.json │ │ ├── output_3725.json │ │ ├── output_3726.json │ │ ├── output_3727.json │ │ ├── output_3728.json │ │ ├── output_3729.json │ │ ├── output_3730.json │ │ ├── output_3731.json │ │ ├── output_3732.json │ │ ├── output_3733.json │ │ ├── output_3734.json │ │ ├── output_3735.json │ │ ├── output_3736.json │ │ ├── output_3737.json │ │ ├── output_3738.json │ │ ├── output_3739.json │ │ ├── output_3740.json │ │ ├── output_3741.json │ │ ├── output_3742.json │ │ ├── output_3743.json │ │ ├── output_3744.json │ │ ├── output_3745.json │ │ ├── output_3746.json │ │ ├── output_3747.json │ │ ├── output_3748.json │ │ ├── output_3749.json │ │ ├── output_3750.json │ │ ├── output_3751.json │ │ ├── output_3752.json │ │ ├── output_3753.json │ │ ├── output_3754.json │ │ ├── output_3755.json │ │ ├── output_3756.json │ │ ├── output_3757.json │ │ ├── output_3758.json │ │ ├── output_3759.json │ │ ├── output_3760.json │ │ ├── output_3761.json │ │ ├── output_3762.json │ │ ├── output_3763.json │ │ ├── output_3764.json │ │ ├── output_3765.json │ │ ├── output_3766.json │ │ ├── output_3767.json │ │ ├── output_3768.json │ │ ├── output_3769.json │ │ ├── output_3770.json │ │ ├── output_3771.json │ │ ├── output_3772.json │ │ ├── output_3773.json │ │ ├── output_3774.json │ │ ├── output_3775.json │ │ ├── output_3776.json │ │ ├── output_3777.json │ │ ├── output_3778.json │ │ ├── output_3779.json │ │ ├── output_3780.json │ │ ├── output_3781.json │ │ ├── output_3782.json │ │ ├── output_3783.json │ │ ├── output_3784.json │ │ ├── output_3785.json │ │ ├── output_3786.json │ │ ├── output_3787.json │ │ ├── output_3788.json │ │ ├── output_3789.json │ │ ├── output_3790.json │ │ ├── output_3791.json │ │ ├── output_3792.json │ │ ├── output_3793.json │ │ ├── output_3794.json │ │ ├── output_3795.json │ │ ├── output_3796.json │ │ ├── output_3797.json │ │ ├── output_3798.json │ │ ├── output_3799.json │ │ ├── output_3800.json │ │ ├── output_3801.json │ │ ├── output_3802.json │ │ ├── output_3803.json │ │ ├── output_3804.json │ │ ├── output_3805.json │ │ ├── output_3806.json │ │ ├── output_3807.json │ │ ├── output_3808.json │ │ ├── output_3809.json │ │ ├── output_3810.json │ │ ├── output_3811.json │ │ ├── output_3812.json │ │ ├── output_3813.json │ │ ├── output_3814.json │ │ ├── output_3815.json │ │ ├── output_3816.json │ │ ├── output_3817.json │ │ ├── output_3818.json │ │ ├── output_3819.json │ │ ├── output_3820.json │ │ ├── output_3821.json │ │ ├── output_3822.json │ │ ├── output_3823.json │ │ ├── output_3824.json │ │ ├── output_3825.json │ │ ├── output_3826.json │ │ ├── output_3827.json │ │ ├── output_3828.json │ │ ├── output_3829.json │ │ ├── output_3830.json │ │ ├── output_3831.json │ │ ├── output_3832.json │ │ ├── output_3833.json │ │ ├── output_3834.json │ │ ├── output_3835.json │ │ ├── output_3836.json │ │ ├── output_3837.json │ │ ├── output_3838.json │ │ ├── output_3839.json │ │ ├── output_3840.json │ │ ├── output_3841.json │ │ ├── output_3842.json │ │ ├── output_3843.json │ │ ├── output_3844.json │ │ ├── output_3845.json │ │ ├── output_3846.json │ │ ├── output_3847.json │ │ ├── output_3848.json │ │ ├── output_3849.json │ │ ├── output_3850.json │ │ ├── output_3851.json │ │ ├── output_3852.json │ │ ├── output_3853.json │ │ ├── output_3854.json │ │ ├── output_3855.json │ │ ├── output_3856.json │ │ ├── output_3857.json │ │ ├── output_3858.json │ │ ├── output_3859.json │ │ ├── output_3860.json │ │ ├── output_3861.json │ │ ├── output_3862.json │ │ ├── output_3863.json │ │ ├── output_3864.json │ │ ├── output_3865.json │ │ ├── output_3866.json │ │ ├── output_3867.json │ │ ├── output_3868.json │ │ ├── output_3869.json │ │ ├── output_3870.json │ │ ├── output_3871.json │ │ ├── output_3872.json │ │ ├── output_3873.json │ │ ├── output_3874.json │ │ ├── output_3875.json │ │ ├── output_3876.json │ │ ├── output_3877.json │ │ ├── output_3878.json │ │ ├── output_3879.json │ │ ├── output_3880.json │ │ ├── output_3881.json │ │ ├── output_3882.json │ │ ├── output_3883.json │ │ ├── output_3884.json │ │ ├── output_3885.json │ │ ├── output_3886.json │ │ ├── output_3887.json │ │ ├── output_3888.json │ │ ├── output_3889.json │ │ ├── output_3890.json │ │ ├── output_3891.json │ │ ├── output_3892.json │ │ ├── output_3893.json │ │ ├── output_3894.json │ │ ├── output_3895.json │ │ ├── output_3896.json │ │ ├── output_3897.json │ │ ├── output_3898.json │ │ ├── output_3899.json │ │ ├── output_3900.json │ │ ├── output_3901.json │ │ ├── output_3902.json │ │ ├── output_3903.json │ │ ├── output_3904.json │ │ ├── output_3905.json │ │ ├── output_3906.json │ │ ├── output_3907.json │ │ ├── output_3908.json │ │ ├── output_3909.json │ │ ├── output_3910.json │ │ ├── output_3911.json │ │ ├── output_3912.json │ │ ├── output_3913.json │ │ ├── output_3914.json │ │ ├── output_3915.json │ │ ├── output_3916.json │ │ ├── output_3917.json │ │ ├── output_3918.json │ │ ├── output_3919.json │ │ ├── output_3920.json │ │ ├── output_3921.json │ │ ├── output_3922.json │ │ ├── output_3923.json │ │ ├── output_3924.json │ │ ├── output_3925.json │ │ ├── output_3926.json │ │ ├── output_3927.json │ │ ├── output_3928.json │ │ ├── output_3929.json │ │ ├── output_3930.json │ │ ├── output_3931.json │ │ ├── output_3932.json │ │ ├── output_3933.json │ │ ├── output_3934.json │ │ ├── output_3935.json │ │ ├── output_3936.json │ │ ├── output_3937.json │ │ ├── output_3938.json │ │ ├── output_3939.json │ │ ├── output_3940.json │ │ ├── output_3941.json │ │ ├── output_3942.json │ │ ├── output_3943.json │ │ ├── output_3944.json │ │ ├── output_3945.json │ │ ├── output_3946.json │ │ ├── output_3947.json │ │ ├── output_3948.json │ │ ├── output_3949.json │ │ ├── output_3950.json │ │ ├── output_3951.json │ │ ├── output_3952.json │ │ ├── output_3953.json │ │ ├── output_3954.json │ │ ├── output_3955.json │ │ ├── output_3956.json │ │ ├── output_3957.json │ │ ├── output_3958.json │ │ ├── output_3959.json │ │ ├── output_3960.json │ │ ├── output_3961.json │ │ ├── output_3962.json │ │ ├── output_3963.json │ │ ├── output_3964.json │ │ ├── output_3965.json │ │ ├── output_3966.json │ │ ├── output_3967.json │ │ ├── output_3968.json │ │ ├── output_3969.json │ │ ├── output_3970.json │ │ ├── output_3971.json │ │ ├── output_3972.json │ │ ├── output_3973.json │ │ ├── output_3974.json │ │ ├── output_3975.json │ │ ├── output_3976.json │ │ ├── output_3977.json │ │ ├── output_3978.json │ │ ├── output_3979.json │ │ ├── output_3980.json │ │ ├── output_3981.json │ │ ├── output_3982.json │ │ ├── output_3983.json │ │ ├── output_3984.json │ │ ├── output_3985.json │ │ ├── output_3986.json │ │ ├── output_3987.json │ │ ├── output_3988.json │ │ ├── output_3989.json │ │ ├── output_3990.json │ │ ├── output_3991.json │ │ ├── output_3992.json │ │ ├── output_3993.json │ │ ├── output_3994.json │ │ ├── output_3995.json │ │ ├── output_3996.json │ │ ├── output_3997.json │ │ ├── output_3998.json │ │ ├── output_3999.json │ │ ├── output_4000.json │ │ ├── output_4001.json │ │ ├── output_4002.json │ │ ├── output_4003.json │ │ ├── output_4004.json │ │ ├── output_4005.json │ │ ├── output_4006.json │ │ ├── output_4007.json │ │ ├── output_4008.json │ │ ├── output_4009.json │ │ ├── output_4010.json │ │ ├── output_4011.json │ │ ├── output_4012.json │ │ ├── output_4013.json │ │ ├── output_4014.json │ │ ├── output_4015.json │ │ ├── output_4016.json │ │ ├── output_4017.json │ │ ├── output_4018.json │ │ ├── output_4019.json │ │ ├── output_4020.json │ │ ├── output_4021.json │ │ ├── output_4022.json │ │ ├── output_4023.json │ │ ├── output_4024.json │ │ ├── output_4025.json │ │ ├── output_4026.json │ │ ├── output_4027.json │ │ ├── output_4028.json │ │ ├── output_4029.json │ │ ├── output_4030.json │ │ ├── output_4031.json │ │ ├── output_4032.json │ │ ├── output_4033.json │ │ ├── output_4034.json │ │ ├── output_4035.json │ │ ├── output_4036.json │ │ ├── output_4037.json │ │ ├── output_4038.json │ │ ├── output_4039.json │ │ ├── output_4040.json │ │ ├── output_4041.json │ │ ├── output_4042.json │ │ ├── output_4043.json │ │ ├── output_4044.json │ │ ├── output_4045.json │ │ ├── output_4046.json │ │ ├── output_4047.json │ │ ├── output_4048.json │ │ ├── output_4049.json │ │ ├── output_4050.json │ │ ├── output_4051.json │ │ ├── output_4052.json │ │ ├── output_4053.json │ │ ├── output_4054.json │ │ ├── output_4055.json │ │ ├── output_4056.json │ │ ├── output_4057.json │ │ ├── output_4058.json │ │ ├── output_4059.json │ │ ├── output_4060.json │ │ ├── output_4061.json │ │ ├── output_4062.json │ │ ├── output_4063.json │ │ ├── output_4064.json │ │ ├── output_4065.json │ │ ├── output_4066.json │ │ ├── output_4067.json │ │ ├── output_4068.json │ │ ├── output_4069.json │ │ ├── output_4070.json │ │ ├── output_4071.json │ │ ├── output_4072.json │ │ ├── output_4073.json │ │ ├── output_4074.json │ │ ├── output_4075.json │ │ ├── output_4076.json │ │ ├── output_4077.json │ │ ├── output_4078.json │ │ ├── output_4079.json │ │ ├── output_4080.json │ │ ├── output_4081.json │ │ ├── output_4082.json │ │ ├── output_4083.json │ │ ├── output_4084.json │ │ ├── output_4085.json │ │ ├── output_4086.json │ │ ├── output_4087.json │ │ ├── output_4088.json │ │ ├── output_4089.json │ │ ├── output_4090.json │ │ ├── output_4091.json │ │ ├── output_4092.json │ │ ├── output_4093.json │ │ ├── output_4094.json │ │ ├── output_4095.json │ │ ├── output_4096.json │ │ ├── output_4097.json │ │ ├── output_4098.json │ │ ├── output_4099.json │ │ ├── output_4100.json │ │ ├── output_4101.json │ │ ├── output_4102.json │ │ ├── output_4103.json │ │ ├── output_4104.json │ │ ├── output_4105.json │ │ ├── output_4106.json │ │ ├── output_4107.json │ │ ├── output_4108.json │ │ ├── output_4109.json │ │ ├── output_4110.json │ │ ├── output_4111.json │ │ ├── output_4112.json │ │ ├── output_4113.json │ │ ├── output_4114.json │ │ ├── output_4115.json │ │ ├── output_4116.json │ │ ├── output_4117.json │ │ ├── output_4118.json │ │ ├── output_4119.json │ │ ├── output_4120.json │ │ ├── output_4121.json │ │ ├── output_4122.json │ │ ├── output_4123.json │ │ ├── output_4124.json │ │ ├── output_4125.json │ │ ├── output_4126.json │ │ ├── output_4127.json │ │ ├── output_4128.json │ │ ├── output_4129.json │ │ ├── output_4130.json │ │ ├── output_4131.json │ │ ├── output_4132.json │ │ ├── output_4133.json │ │ ├── output_4134.json │ │ ├── output_4135.json │ │ ├── output_4136.json │ │ ├── output_4137.json │ │ ├── output_4138.json │ │ ├── output_4139.json │ │ ├── output_4140.json │ │ ├── output_4141.json │ │ ├── output_4142.json │ │ ├── output_4143.json │ │ ├── output_4144.json │ │ ├── output_4145.json │ │ ├── output_4146.json │ │ ├── output_4147.json │ │ ├── output_4148.json │ │ ├── output_4149.json │ │ ├── output_4150.json │ │ ├── output_4151.json │ │ ├── output_4152.json │ │ ├── output_4153.json │ │ ├── output_4154.json │ │ ├── output_4155.json │ │ ├── output_4156.json │ │ ├── output_4157.json │ │ ├── output_4158.json │ │ ├── output_4159.json │ │ ├── output_4160.json │ │ ├── output_4161.json │ │ ├── output_4162.json │ │ ├── output_4163.json │ │ ├── output_4164.json │ │ ├── output_4165.json │ │ ├── output_4166.json │ │ ├── output_4167.json │ │ ├── output_4168.json │ │ ├── output_4169.json │ │ ├── output_4170.json │ │ ├── output_4171.json │ │ ├── output_4172.json │ │ ├── output_4173.json │ │ ├── output_4174.json │ │ ├── output_4175.json │ │ ├── output_4176.json │ │ ├── output_4177.json │ │ ├── output_4178.json │ │ ├── output_4179.json │ │ ├── output_4180.json │ │ ├── output_4181.json │ │ ├── output_4182.json │ │ ├── output_4183.json │ │ ├── output_4184.json │ │ ├── output_4185.json │ │ ├── output_4186.json │ │ ├── output_4187.json │ │ ├── output_4188.json │ │ ├── output_4189.json │ │ ├── output_4190.json │ │ ├── output_4191.json │ │ ├── output_4192.json │ │ ├── output_4193.json │ │ ├── output_4194.json │ │ ├── output_4195.json │ │ ├── output_4196.json │ │ ├── output_4197.json │ │ ├── output_4198.json │ │ ├── output_4199.json │ │ ├── output_4200.json │ │ ├── output_4201.json │ │ ├── output_4202.json │ │ ├── output_4203.json │ │ ├── output_4204.json │ │ ├── output_4205.json │ │ ├── output_4206.json │ │ ├── output_4207.json │ │ ├── output_4208.json │ │ ├── output_4209.json │ │ ├── output_4210.json │ │ ├── output_4211.json │ │ ├── output_4212.json │ │ ├── output_4213.json │ │ ├── output_4214.json │ │ ├── output_4215.json │ │ ├── output_4216.json │ │ ├── output_4217.json │ │ ├── output_4218.json │ │ ├── output_4219.json │ │ ├── output_4220.json │ │ ├── output_4221.json │ │ ├── output_4222.json │ │ ├── output_4223.json │ │ ├── output_4224.json │ │ ├── output_4225.json │ │ ├── output_4226.json │ │ ├── output_4227.json │ │ ├── output_4228.json │ │ ├── output_4229.json │ │ ├── output_4230.json │ │ ├── output_4231.json │ │ ├── output_4232.json │ │ ├── output_4233.json │ │ ├── output_4234.json │ │ ├── output_4235.json │ │ ├── output_4236.json │ │ ├── output_4237.json │ │ ├── output_4238.json │ │ ├── output_4239.json │ │ ├── output_4240.json │ │ ├── output_4241.json │ │ ├── output_4242.json │ │ ├── output_4243.json │ │ ├── output_4244.json │ │ ├── output_4245.json │ │ ├── output_4246.json │ │ ├── output_4247.json │ │ ├── output_4248.json │ │ ├── output_4249.json │ │ ├── output_4250.json │ │ ├── output_4251.json │ │ ├── output_4252.json │ │ ├── output_4253.json │ │ ├── output_4254.json │ │ ├── output_4255.json │ │ ├── output_4256.json │ │ ├── output_4257.json │ │ ├── output_4258.json │ │ ├── output_4259.json │ │ ├── output_4260.json │ │ ├── output_4261.json │ │ ├── output_4262.json │ │ ├── output_4263.json │ │ ├── output_4264.json │ │ ├── output_4265.json │ │ ├── output_4266.json │ │ ├── output_4267.json │ │ ├── output_4268.json │ │ ├── output_4269.json │ │ ├── output_4270.json │ │ ├── output_4271.json │ │ ├── output_4272.json │ │ ├── output_4273.json │ │ ├── output_4274.json │ │ ├── output_4275.json │ │ ├── output_4276.json │ │ ├── output_4277.json │ │ ├── output_4278.json │ │ ├── output_4279.json │ │ ├── output_4280.json │ │ ├── output_4281.json │ │ ├── output_4282.json │ │ ├── output_4283.json │ │ ├── output_4284.json │ │ ├── output_4285.json │ │ ├── output_4286.json │ │ ├── output_4287.json │ │ ├── output_4288.json │ │ ├── output_4289.json │ │ ├── output_4290.json │ │ ├── output_4291.json │ │ ├── output_4292.json │ │ ├── output_4293.json │ │ ├── output_4294.json │ │ ├── output_4295.json │ │ ├── output_4296.json │ │ ├── output_4297.json │ │ ├── output_4298.json │ │ ├── output_4299.json │ │ ├── output_4300.json │ │ ├── output_4301.json │ │ ├── output_4302.json │ │ ├── output_4303.json │ │ ├── output_4304.json │ │ ├── output_4305.json │ │ ├── output_4306.json │ │ ├── output_4307.json │ │ ├── output_4308.json │ │ ├── output_4309.json │ │ ├── output_4310.json │ │ ├── output_4311.json │ │ ├── output_4312.json │ │ ├── output_4313.json │ │ ├── output_4314.json │ │ ├── output_4315.json │ │ ├── output_4316.json │ │ ├── output_4317.json │ │ ├── output_4318.json │ │ ├── output_4319.json │ │ ├── output_4320.json │ │ ├── output_4321.json │ │ ├── output_4322.json │ │ ├── output_4323.json │ │ ├── output_4324.json │ │ ├── output_4325.json │ │ ├── output_4326.json │ │ ├── output_4327.json │ │ ├── output_4328.json │ │ ├── output_4329.json │ │ ├── output_4330.json │ │ ├── output_4331.json │ │ ├── output_4332.json │ │ ├── output_4333.json │ │ ├── output_4334.json │ │ ├── output_4335.json │ │ ├── output_4336.json │ │ ├── output_4337.json │ │ ├── output_4338.json │ │ ├── output_4339.json │ │ ├── output_4340.json │ │ ├── output_4341.json │ │ ├── output_4342.json │ │ ├── output_4343.json │ │ ├── output_4344.json │ │ ├── output_4345.json │ │ ├── output_4346.json │ │ ├── output_4347.json │ │ ├── output_4348.json │ │ ├── output_4349.json │ │ ├── output_4350.json │ │ ├── output_4351.json │ │ ├── output_4352.json │ │ ├── output_4353.json │ │ ├── output_4354.json │ │ ├── output_4355.json │ │ ├── output_4356.json │ │ ├── output_4357.json │ │ ├── output_4358.json │ │ ├── output_4359.json │ │ ├── output_4360.json │ │ ├── output_4361.json │ │ ├── output_4362.json │ │ ├── output_4363.json │ │ ├── output_4364.json │ │ ├── output_4365.json │ │ ├── output_4366.json │ │ ├── output_4367.json │ │ ├── output_4368.json │ │ ├── output_4369.json │ │ ├── output_4370.json │ │ ├── output_4371.json │ │ ├── output_4372.json │ │ ├── output_4373.json │ │ ├── output_4374.json │ │ ├── output_4375.json │ │ ├── output_4376.json │ │ ├── output_4377.json │ │ ├── output_4378.json │ │ ├── output_4379.json │ │ ├── output_4380.json │ │ ├── output_4381.json │ │ ├── output_4382.json │ │ ├── output_4383.json │ │ ├── output_4384.json │ │ ├── output_4385.json │ │ ├── output_4386.json │ │ ├── output_4387.json │ │ ├── output_4388.json │ │ ├── output_4389.json │ │ ├── output_4390.json │ │ ├── output_4391.json │ │ ├── output_4392.json │ │ ├── output_4393.json │ │ ├── output_4394.json │ │ ├── output_4395.json │ │ ├── output_4396.json │ │ ├── output_4397.json │ │ ├── output_4398.json │ │ ├── output_4399.json │ │ ├── output_4400.json │ │ ├── output_4401.json │ │ ├── output_4402.json │ │ ├── output_4403.json │ │ ├── output_4404.json │ │ ├── output_4405.json │ │ ├── output_4406.json │ │ ├── output_4407.json │ │ ├── output_4408.json │ │ ├── output_4409.json │ │ ├── output_4410.json │ │ ├── output_4411.json │ │ ├── output_4412.json │ │ ├── output_4413.json │ │ ├── output_4414.json │ │ ├── output_4415.json │ │ ├── output_4416.json │ │ ├── output_4417.json │ │ ├── output_4418.json │ │ ├── output_4419.json │ │ ├── output_4420.json │ │ ├── output_4421.json │ │ ├── output_4422.json │ │ ├── output_4423.json │ │ ├── output_4424.json │ │ ├── output_4425.json │ │ ├── output_4426.json │ │ ├── output_4427.json │ │ ├── output_4428.json │ │ ├── output_4429.json │ │ ├── output_4430.json │ │ ├── output_4431.json │ │ ├── output_4432.json │ │ ├── output_4433.json │ │ ├── output_4434.json │ │ ├── output_4435.json │ │ ├── output_4436.json │ │ ├── output_4437.json │ │ ├── output_4438.json │ │ ├── output_4439.json │ │ ├── output_4440.json │ │ ├── output_4441.json │ │ ├── output_4442.json │ │ ├── output_4443.json │ │ ├── output_4444.json │ │ ├── output_4445.json │ │ ├── output_4446.json │ │ ├── output_4447.json │ │ ├── output_4448.json │ │ ├── output_4449.json │ │ ├── output_4450.json │ │ ├── output_4451.json │ │ ├── output_4452.json │ │ ├── output_4453.json │ │ ├── output_4454.json │ │ ├── output_4455.json │ │ ├── output_4456.json │ │ ├── output_4457.json │ │ ├── output_4458.json │ │ ├── output_4459.json │ │ ├── output_4460.json │ │ ├── output_4461.json │ │ ├── output_4462.json │ │ ├── output_4463.json │ │ ├── output_4464.json │ │ ├── output_4465.json │ │ ├── output_4466.json │ │ ├── output_4467.json │ │ ├── output_4468.json │ │ ├── output_4469.json │ │ ├── output_4470.json │ │ ├── output_4471.json │ │ ├── output_4472.json │ │ ├── output_4473.json │ │ ├── output_4474.json │ │ ├── output_4475.json │ │ ├── output_4476.json │ │ ├── output_4477.json │ │ ├── output_4478.json │ │ ├── output_4479.json │ │ ├── output_4480.json │ │ ├── output_4481.json │ │ ├── output_4482.json │ │ ├── output_4483.json │ │ ├── output_4484.json │ │ ├── output_4485.json │ │ ├── output_4486.json │ │ ├── output_4487.json │ │ ├── output_4488.json │ │ ├── output_4489.json │ │ ├── output_4490.json │ │ ├── output_4491.json │ │ ├── output_4492.json │ │ ├── output_4493.json │ │ ├── output_4494.json │ │ ├── output_4495.json │ │ ├── output_4496.json │ │ ├── output_4497.json │ │ ├── output_4498.json │ │ ├── output_4499.json │ │ ├── output_4500.json │ │ ├── output_4501.json │ │ ├── output_4502.json │ │ ├── output_4503.json │ │ ├── output_4504.json │ │ ├── output_4505.json │ │ ├── output_4506.json │ │ ├── output_4507.json │ │ ├── output_4508.json │ │ ├── output_4509.json │ │ ├── output_4510.json │ │ ├── output_4511.json │ │ ├── output_4512.json │ │ ├── output_4513.json │ │ ├── output_4514.json │ │ ├── output_4515.json │ │ ├── output_4516.json │ │ ├── output_4517.json │ │ ├── output_4518.json │ │ ├── output_4519.json │ │ ├── output_4520.json │ │ ├── output_4521.json │ │ ├── output_4522.json │ │ ├── output_4523.json │ │ ├── output_4524.json │ │ ├── output_4525.json │ │ ├── output_4526.json │ │ ├── output_4527.json │ │ ├── output_4528.json │ │ ├── output_4529.json │ │ ├── output_4530.json │ │ ├── output_4531.json │ │ ├── output_4532.json │ │ ├── output_4533.json │ │ ├── output_4534.json │ │ ├── output_4535.json │ │ ├── output_4536.json │ │ ├── output_4537.json │ │ ├── output_4538.json │ │ ├── output_4539.json │ │ ├── output_4540.json │ │ ├── output_4541.json │ │ ├── output_4542.json │ │ ├── output_4543.json │ │ ├── output_4544.json │ │ ├── output_4545.json │ │ ├── output_4546.json │ │ ├── output_4547.json │ │ ├── output_4548.json │ │ ├── output_4549.json │ │ ├── output_4550.json │ │ ├── output_4551.json │ │ ├── output_4552.json │ │ ├── output_4553.json │ │ ├── output_4554.json │ │ ├── output_4555.json │ │ ├── output_4556.json │ │ ├── output_4557.json │ │ ├── output_4558.json │ │ ├── output_4559.json │ │ ├── output_4560.json │ │ ├── output_4561.json │ │ ├── output_4562.json │ │ ├── output_4563.json │ │ ├── output_4564.json │ │ ├── output_4565.json │ │ ├── output_4566.json │ │ ├── output_4567.json │ │ ├── output_4568.json │ │ ├── output_4569.json │ │ ├── output_4570.json │ │ ├── output_4571.json │ │ ├── output_4572.json │ │ ├── output_4573.json │ │ ├── output_4574.json │ │ ├── output_4575.json │ │ ├── output_4576.json │ │ ├── output_4577.json │ │ ├── output_4578.json │ │ ├── output_4579.json │ │ ├── output_4580.json │ │ ├── output_4581.json │ │ ├── output_4582.json │ │ ├── output_4583.json │ │ ├── output_4584.json │ │ ├── output_4585.json │ │ ├── output_4586.json │ │ ├── output_4587.json │ │ ├── output_4588.json │ │ ├── output_4589.json │ │ ├── output_4590.json │ │ ├── output_4591.json │ │ ├── output_4592.json │ │ ├── output_4593.json │ │ ├── output_4594.json │ │ ├── output_4595.json │ │ ├── output_4596.json │ │ ├── output_4597.json │ │ ├── output_4598.json │ │ ├── output_4599.json │ │ ├── output_4600.json │ │ ├── output_4601.json │ │ ├── output_4602.json │ │ ├── output_4603.json │ │ ├── output_4604.json │ │ ├── output_4605.json │ │ ├── output_4606.json │ │ ├── output_4607.json │ │ ├── output_4608.json │ │ ├── output_4609.json │ │ ├── output_4610.json │ │ ├── output_4611.json │ │ ├── output_4612.json │ │ ├── output_4613.json │ │ ├── output_4614.json │ │ ├── output_4615.json │ │ ├── output_4616.json │ │ ├── output_4617.json │ │ ├── output_4618.json │ │ ├── output_4619.json │ │ ├── output_4620.json │ │ ├── output_4621.json │ │ ├── output_4622.json │ │ ├── output_4623.json │ │ ├── output_4624.json │ │ ├── output_4625.json │ │ ├── output_4626.json │ │ ├── output_4627.json │ │ ├── output_4628.json │ │ ├── output_4629.json │ │ ├── output_4630.json │ │ ├── output_4631.json │ │ ├── output_4632.json │ │ ├── output_4633.json │ │ ├── output_4634.json │ │ ├── output_4635.json │ │ ├── output_4636.json │ │ ├── output_4637.json │ │ ├── output_4638.json │ │ ├── output_4639.json │ │ ├── output_4640.json │ │ ├── output_4641.json │ │ ├── output_4642.json │ │ ├── output_4643.json │ │ ├── output_4644.json │ │ ├── output_4645.json │ │ ├── output_4646.json │ │ ├── output_4647.json │ │ ├── output_4648.json │ │ ├── output_4649.json │ │ ├── output_4650.json │ │ ├── output_4651.json │ │ ├── output_4652.json │ │ ├── output_4653.json │ │ ├── output_4654.json │ │ ├── output_4655.json │ │ ├── output_4656.json │ │ ├── output_4657.json │ │ ├── output_4658.json │ │ ├── output_4659.json │ │ ├── output_4660.json │ │ ├── output_4661.json │ │ ├── output_4662.json │ │ ├── output_4663.json │ │ ├── output_4664.json │ │ ├── output_4665.json │ │ ├── output_4666.json │ │ ├── output_4667.json │ │ ├── output_4668.json │ │ ├── output_4669.json │ │ ├── output_4670.json │ │ ├── output_4671.json │ │ ├── output_4672.json │ │ ├── output_4673.json │ │ ├── output_4674.json │ │ ├── output_4675.json │ │ ├── output_4676.json │ │ ├── output_4677.json │ │ ├── output_4678.json │ │ ├── output_4679.json │ │ ├── output_4680.json │ │ ├── output_4681.json │ │ ├── output_4682.json │ │ ├── output_4683.json │ │ ├── output_4684.json │ │ ├── output_4685.json │ │ ├── output_4686.json │ │ ├── output_4687.json │ │ ├── output_4688.json │ │ ├── output_4689.json │ │ ├── output_4690.json │ │ ├── output_4691.json │ │ ├── output_4692.json │ │ ├── output_4693.json │ │ ├── output_4694.json │ │ ├── output_4695.json │ │ ├── output_4696.json │ │ ├── output_4697.json │ │ ├── output_4698.json │ │ ├── output_4699.json │ │ ├── output_4700.json │ │ ├── output_4701.json │ │ ├── output_4702.json │ │ ├── output_4703.json │ │ ├── output_4704.json │ │ ├── output_4705.json │ │ ├── output_4706.json │ │ ├── output_4707.json │ │ ├── output_4708.json │ │ ├── output_4709.json │ │ ├── output_4710.json │ │ ├── output_4711.json │ │ ├── output_4712.json │ │ ├── output_4713.json │ │ ├── output_4714.json │ │ ├── output_4715.json │ │ ├── output_4716.json │ │ ├── output_4717.json │ │ ├── output_4718.json │ │ ├── output_4719.json │ │ ├── output_4720.json │ │ ├── output_4721.json │ │ ├── output_4722.json │ │ ├── output_4723.json │ │ ├── output_4724.json │ │ ├── output_4725.json │ │ ├── output_4726.json │ │ ├── output_4727.json │ │ ├── output_4728.json │ │ ├── output_4729.json │ │ ├── output_4730.json │ │ ├── output_4731.json │ │ ├── output_4732.json │ │ ├── output_4733.json │ │ ├── output_4734.json │ │ ├── output_4735.json │ │ ├── output_4736.json │ │ ├── output_4737.json │ │ ├── output_4738.json │ │ ├── output_4739.json │ │ ├── output_4740.json │ │ ├── output_4741.json │ │ ├── output_4742.json │ │ ├── output_4743.json │ │ ├── output_4744.json │ │ ├── output_4745.json │ │ ├── output_4746.json │ │ ├── output_4747.json │ │ ├── output_4748.json │ │ ├── output_4749.json │ │ ├── output_4750.json │ │ ├── output_4751.json │ │ ├── output_4752.json │ │ ├── output_4753.json │ │ ├── output_4754.json │ │ ├── output_4755.json │ │ ├── output_4756.json │ │ ├── output_4757.json │ │ ├── output_4758.json │ │ ├── output_4759.json │ │ ├── output_4760.json │ │ ├── output_4761.json │ │ ├── output_4762.json │ │ ├── output_4763.json │ │ ├── output_4764.json │ │ ├── output_4765.json │ │ ├── output_4766.json │ │ ├── output_4767.json │ │ ├── output_4768.json │ │ ├── output_4769.json │ │ ├── output_4770.json │ │ ├── output_4771.json │ │ ├── output_4772.json │ │ ├── output_4773.json │ │ ├── output_4774.json │ │ ├── output_4775.json │ │ ├── output_4776.json │ │ ├── output_4777.json │ │ ├── output_4778.json │ │ ├── output_4779.json │ │ ├── output_4780.json │ │ ├── output_4781.json │ │ ├── output_4782.json │ │ ├── output_4783.json │ │ ├── output_4784.json │ │ ├── output_4785.json │ │ ├── output_4786.json │ │ ├── output_4787.json │ │ ├── output_4788.json │ │ ├── output_4789.json │ │ ├── output_4790.json │ │ ├── output_4791.json │ │ ├── output_4792.json │ │ ├── output_4793.json │ │ ├── output_4794.json │ │ ├── output_4795.json │ │ ├── output_4796.json │ │ ├── output_4797.json │ │ ├── output_4798.json │ │ ├── output_4799.json │ │ ├── output_4800.json │ │ ├── output_4801.json │ │ ├── output_4802.json │ │ ├── output_4803.json │ │ ├── output_4804.json │ │ ├── output_4805.json │ │ ├── output_4806.json │ │ ├── output_4807.json │ │ ├── output_4808.json │ │ ├── output_4809.json │ │ ├── output_4810.json │ │ ├── output_4811.json │ │ ├── output_4812.json │ │ ├── output_4813.json │ │ ├── output_4814.json │ │ ├── output_4815.json │ │ ├── output_4816.json │ │ ├── output_4817.json │ │ ├── output_4818.json │ │ ├── output_4819.json │ │ ├── output_4820.json │ │ ├── output_4821.json │ │ ├── output_4822.json │ │ ├── output_4823.json │ │ ├── output_4824.json │ │ ├── output_4825.json │ │ ├── output_4826.json │ │ ├── output_4827.json │ │ ├── output_4828.json │ │ ├── output_4829.json │ │ ├── output_4830.json │ │ ├── output_4831.json │ │ ├── output_4832.json │ │ ├── output_4833.json │ │ ├── output_4834.json │ │ ├── output_4835.json │ │ ├── output_4836.json │ │ ├── output_4837.json │ │ ├── output_4838.json │ │ ├── output_4839.json │ │ ├── output_4840.json │ │ ├── output_4841.json │ │ ├── output_4842.json │ │ ├── output_4843.json │ │ ├── output_4844.json │ │ ├── output_4845.json │ │ ├── output_4846.json │ │ ├── output_4847.json │ │ ├── output_4848.json │ │ ├── output_4849.json │ │ ├── output_4850.json │ │ ├── output_4851.json │ │ ├── output_4852.json │ │ ├── output_4853.json │ │ ├── output_4854.json │ │ ├── output_4855.json │ │ ├── output_4856.json │ │ ├── output_4857.json │ │ ├── output_4858.json │ │ ├── output_4859.json │ │ ├── output_4860.json │ │ ├── output_4861.json │ │ ├── output_4862.json │ │ ├── output_4863.json │ │ ├── output_4864.json │ │ ├── output_4865.json │ │ ├── output_4866.json │ │ ├── output_4867.json │ │ ├── output_4868.json │ │ ├── output_4869.json │ │ ├── output_4870.json │ │ ├── output_4871.json │ │ ├── output_4872.json │ │ ├── output_4873.json │ │ ├── output_4874.json │ │ ├── output_4875.json │ │ ├── output_4876.json │ │ ├── output_4877.json │ │ ├── output_4878.json │ │ ├── output_4879.json │ │ ├── output_4880.json │ │ ├── output_4881.json │ │ ├── output_4882.json │ │ ├── output_4883.json │ │ ├── output_4884.json │ │ ├── output_4885.json │ │ ├── output_4886.json │ │ ├── output_4887.json │ │ ├── output_4888.json │ │ ├── output_4889.json │ │ ├── output_4890.json │ │ ├── output_4891.json │ │ ├── output_4892.json │ │ ├── output_4893.json │ │ ├── output_4894.json │ │ ├── output_4895.json │ │ ├── output_4896.json │ │ ├── output_4897.json │ │ ├── output_4898.json │ │ ├── output_4899.json │ │ ├── output_4900.json │ │ ├── output_4901.json │ │ ├── output_4902.json │ │ ├── output_4903.json │ │ ├── output_4904.json │ │ ├── output_4905.json │ │ ├── output_4906.json │ │ ├── output_4907.json │ │ ├── output_4908.json │ │ ├── output_4909.json │ │ ├── output_4910.json │ │ ├── output_4911.json │ │ ├── output_4912.json │ │ ├── output_4913.json │ │ ├── output_4914.json │ │ ├── output_4915.json │ │ ├── output_4916.json │ │ ├── output_4917.json │ │ ├── output_4918.json │ │ ├── output_4919.json │ │ ├── output_4920.json │ │ ├── output_4921.json │ │ ├── output_4922.json │ │ ├── output_4923.json │ │ ├── output_4924.json │ │ ├── output_4925.json │ │ ├── output_4926.json │ │ ├── output_4927.json │ │ ├── output_4928.json │ │ ├── output_4929.json │ │ ├── output_4930.json │ │ ├── output_4931.json │ │ ├── output_4932.json │ │ ├── output_4933.json │ │ ├── output_4934.json │ │ ├── output_4935.json │ │ ├── output_4936.json │ │ ├── output_4937.json │ │ ├── output_4938.json │ │ ├── output_4939.json │ │ ├── output_4940.json │ │ ├── output_4941.json │ │ ├── output_4942.json │ │ ├── output_4943.json │ │ ├── output_4944.json │ │ ├── output_4945.json │ │ ├── output_4946.json │ │ ├── output_4947.json │ │ ├── output_4948.json │ │ ├── output_4949.json │ │ ├── output_4950.json │ │ ├── output_4951.json │ │ ├── output_4952.json │ │ ├── output_4953.json │ │ ├── output_4954.json │ │ ├── output_4955.json │ │ ├── output_4956.json │ │ ├── output_4957.json │ │ ├── output_4958.json │ │ ├── output_4959.json │ │ ├── output_4960.json │ │ ├── output_4961.json │ │ ├── output_4962.json │ │ ├── output_4963.json │ │ ├── output_4964.json │ │ ├── output_4965.json │ │ ├── output_4966.json │ │ ├── output_4967.json │ │ ├── output_4968.json │ │ ├── output_4969.json │ │ ├── output_4970.json │ │ ├── output_4971.json │ │ ├── output_4972.json │ │ ├── output_4973.json │ │ ├── output_4974.json │ │ ├── output_4975.json │ │ ├── output_4976.json │ │ ├── output_4977.json │ │ ├── output_4978.json │ │ ├── output_4979.json │ │ ├── output_4980.json │ │ ├── output_4981.json │ │ ├── output_4982.json │ │ ├── output_4983.json │ │ ├── output_4984.json │ │ ├── output_4985.json │ │ ├── output_4986.json │ │ ├── output_4987.json │ │ ├── output_4988.json │ │ ├── output_4989.json │ │ ├── output_4990.json │ │ ├── output_4991.json │ │ ├── output_4992.json │ │ ├── output_4993.json │ │ ├── output_4994.json │ │ ├── output_4995.json │ │ ├── output_4996.json │ │ ├── output_4997.json │ │ ├── output_4998.json │ │ ├── output_4999.json │ │ ├── output_5000.json │ │ ├── output_5001.json │ │ ├── output_5002.json │ │ ├── output_5003.json │ │ ├── output_5004.json │ │ ├── output_5005.json │ │ ├── output_5006.json │ │ ├── output_5007.json │ │ ├── output_5008.json │ │ ├── output_5009.json │ │ ├── output_5010.json │ │ ├── output_5011.json │ │ ├── output_5012.json │ │ ├── output_5013.json │ │ ├── output_5014.json │ │ ├── output_5015.json │ │ ├── output_5016.json │ │ ├── output_5017.json │ │ ├── output_5018.json │ │ ├── output_5019.json │ │ ├── output_5020.json │ │ ├── output_5021.json │ │ ├── output_5022.json │ │ ├── output_5023.json │ │ ├── output_5024.json │ │ ├── output_5025.json │ │ ├── output_5026.json │ │ ├── output_5027.json │ │ ├── output_5028.json │ │ ├── output_5029.json │ │ ├── output_5030.json │ │ ├── output_5031.json │ │ ├── output_5032.json │ │ ├── output_5033.json │ │ ├── output_5034.json │ │ ├── output_5035.json │ │ ├── output_5036.json │ │ ├── output_5037.json │ │ ├── output_5038.json │ │ ├── output_5039.json │ │ ├── output_5040.json │ │ ├── output_5041.json │ │ ├── output_5042.json │ │ ├── output_5043.json │ │ ├── output_5044.json │ │ ├── output_5045.json │ │ ├── output_5046.json │ │ ├── output_5047.json │ │ ├── output_5048.json │ │ ├── output_5049.json │ │ ├── output_5050.json │ │ ├── output_5051.json │ │ ├── output_5052.json │ │ ├── output_5053.json │ │ ├── output_5054.json │ │ ├── output_5055.json │ │ ├── output_5056.json │ │ ├── output_5057.json │ │ ├── output_5058.json │ │ ├── output_5059.json │ │ ├── output_5060.json │ │ ├── output_5061.json │ │ ├── output_5062.json │ │ ├── output_5063.json │ │ ├── output_5064.json │ │ ├── output_5065.json │ │ ├── output_5066.json │ │ ├── output_5067.json │ │ ├── output_5068.json │ │ ├── output_5069.json │ │ ├── output_5070.json │ │ ├── output_5071.json │ │ ├── output_5072.json │ │ ├── output_5073.json │ │ ├── output_5074.json │ │ ├── output_5075.json │ │ ├── output_5076.json │ │ ├── output_5077.json │ │ ├── output_5078.json │ │ ├── output_5079.json │ │ ├── output_5080.json │ │ ├── output_5081.json │ │ ├── output_5082.json │ │ ├── output_5083.json │ │ ├── output_5084.json │ │ ├── output_5085.json │ │ ├── output_5086.json │ │ ├── output_5087.json │ │ ├── output_5088.json │ │ ├── output_5089.json │ │ ├── output_5090.json │ │ ├── output_5091.json │ │ ├── output_5092.json │ │ ├── output_5093.json │ │ ├── output_5094.json │ │ ├── output_5095.json │ │ ├── output_5096.json │ │ ├── output_5097.json │ │ ├── output_5098.json │ │ ├── output_5099.json │ │ ├── output_5100.json │ │ ├── output_5101.json │ │ ├── output_5102.json │ │ ├── output_5103.json │ │ ├── output_5104.json │ │ ├── output_5105.json │ │ ├── output_5106.json │ │ ├── output_5107.json │ │ ├── output_5108.json │ │ ├── output_5109.json │ │ ├── output_5110.json │ │ ├── output_5111.json │ │ ├── output_5112.json │ │ ├── output_5113.json │ │ ├── output_5114.json │ │ ├── output_5115.json │ │ ├── output_5116.json │ │ ├── output_5117.json │ │ ├── output_5118.json │ │ ├── output_5119.json │ │ ├── output_5120.json │ │ ├── output_5121.json │ │ ├── output_5122.json │ │ ├── output_5123.json │ │ ├── output_5124.json │ │ ├── output_5125.json │ │ ├── output_5126.json │ │ ├── output_5127.json │ │ ├── output_5128.json │ │ ├── output_5129.json │ │ ├── output_5130.json │ │ ├── output_5131.json │ │ ├── output_5132.json │ │ ├── output_5133.json │ │ ├── output_5134.json │ │ ├── output_5135.json │ │ ├── output_5136.json │ │ ├── output_5137.json │ │ ├── output_5138.json │ │ ├── output_5139.json │ │ ├── output_5140.json │ │ ├── output_5141.json │ │ ├── output_5142.json │ │ ├── output_5143.json │ │ ├── output_5144.json │ │ ├── output_5145.json │ │ ├── output_5146.json │ │ ├── output_5147.json │ │ ├── output_5148.json │ │ ├── output_5149.json │ │ ├── output_5150.json │ │ ├── output_5151.json │ │ ├── output_5152.json │ │ ├── output_5153.json │ │ ├── output_5154.json │ │ ├── output_5155.json │ │ ├── output_5156.json │ │ ├── output_5157.json │ │ ├── output_5158.json │ │ ├── output_5159.json │ │ ├── output_5160.json │ │ ├── output_5161.json │ │ ├── output_5162.json │ │ ├── output_5163.json │ │ ├── output_5164.json │ │ ├── output_5165.json │ │ ├── output_5166.json │ │ ├── output_5167.json │ │ ├── output_5168.json │ │ ├── output_5169.json │ │ ├── output_5170.json │ │ ├── output_5171.json │ │ ├── output_5172.json │ │ ├── output_5173.json │ │ ├── output_5174.json │ │ ├── output_5175.json │ │ ├── output_5176.json │ │ ├── output_5177.json │ │ ├── output_5178.json │ │ ├── output_5179.json │ │ ├── output_5180.json │ │ ├── output_5181.json │ │ ├── output_5182.json │ │ ├── output_5183.json │ │ ├── output_5184.json │ │ ├── output_5185.json │ │ ├── output_5186.json │ │ ├── output_5187.json │ │ ├── output_5188.json │ │ ├── output_5189.json │ │ ├── output_5190.json │ │ ├── output_5191.json │ │ ├── output_5192.json │ │ ├── output_5193.json │ │ ├── output_5194.json │ │ ├── output_5195.json │ │ ├── output_5196.json │ │ ├── output_5197.json │ │ ├── output_5198.json │ │ ├── output_5199.json │ │ ├── output_5200.json │ │ ├── output_5201.json │ │ ├── output_5202.json │ │ ├── output_5203.json │ │ ├── output_5204.json │ │ ├── output_5205.json │ │ ├── output_5206.json │ │ ├── output_5207.json │ │ ├── output_5208.json │ │ ├── output_5209.json │ │ ├── output_5210.json │ │ ├── output_5211.json │ │ ├── output_5212.json │ │ ├── output_5213.json │ │ ├── output_5214.json │ │ ├── output_5215.json │ │ ├── output_5216.json │ │ ├── output_5217.json │ │ ├── output_5218.json │ │ ├── output_5219.json │ │ ├── output_5220.json │ │ ├── output_5221.json │ │ ├── output_5222.json │ │ ├── output_5223.json │ │ ├── output_5224.json │ │ ├── output_5225.json │ │ ├── output_5226.json │ │ ├── output_5227.json │ │ ├── output_5228.json │ │ ├── output_5229.json │ │ ├── output_5230.json │ │ ├── output_5231.json │ │ ├── output_5232.json │ │ ├── output_5233.json │ │ ├── output_5234.json │ │ ├── output_5235.json │ │ ├── output_5236.json │ │ ├── output_5237.json │ │ ├── output_5238.json │ │ ├── output_5239.json │ │ ├── output_5240.json │ │ ├── output_5241.json │ │ ├── output_5242.json │ │ ├── output_5243.json │ │ ├── output_5244.json │ │ ├── output_5245.json │ │ ├── output_5246.json │ │ ├── output_5247.json │ │ ├── output_5248.json │ │ ├── output_5249.json │ │ ├── output_5250.json │ │ ├── output_5251.json │ │ ├── output_5252.json │ │ ├── output_5253.json │ │ ├── output_5254.json │ │ ├── output_5255.json │ │ ├── output_5256.json │ │ ├── output_5257.json │ │ ├── output_5258.json │ │ ├── output_5259.json │ │ ├── output_5260.json │ │ ├── output_5261.json │ │ ├── output_5262.json │ │ ├── output_5263.json │ │ ├── output_5264.json │ │ ├── output_5265.json │ │ ├── output_5266.json │ │ ├── output_5267.json │ │ ├── output_5268.json │ │ ├── output_5269.json │ │ ├── output_5270.json │ │ ├── output_5271.json │ │ ├── output_5272.json │ │ ├── output_5273.json │ │ ├── output_5274.json │ │ ├── output_5275.json │ │ ├── output_5276.json │ │ ├── output_5277.json │ │ ├── output_5278.json │ │ ├── output_5279.json │ │ ├── output_5280.json │ │ ├── output_5281.json │ │ ├── output_5282.json │ │ ├── output_5283.json │ │ ├── output_5284.json │ │ ├── output_5285.json │ │ ├── output_5286.json │ │ ├── output_5287.json │ │ ├── output_5288.json │ │ ├── output_5289.json │ │ ├── output_5290.json │ │ ├── output_5291.json │ │ ├── output_5292.json │ │ ├── output_5293.json │ │ ├── output_5294.json │ │ ├── output_5295.json │ │ ├── output_5296.json │ │ ├── output_5297.json │ │ ├── output_5298.json │ │ ├── output_5299.json │ │ ├── output_5300.json │ │ ├── output_5301.json │ │ ├── output_5302.json │ │ ├── output_5303.json │ │ ├── output_5304.json │ │ ├── output_5305.json │ │ ├── output_5306.json │ │ ├── output_5307.json │ │ ├── output_5308.json │ │ ├── output_5309.json │ │ ├── output_5310.json │ │ ├── output_5311.json │ │ ├── output_5312.json │ │ ├── output_5313.json │ │ ├── output_5314.json │ │ ├── output_5315.json │ │ ├── output_5316.json │ │ ├── output_5317.json │ │ ├── output_5318.json │ │ ├── output_5319.json │ │ ├── output_5320.json │ │ ├── output_5321.json │ │ ├── output_5322.json │ │ ├── output_5323.json │ │ ├── output_5324.json │ │ ├── output_5325.json │ │ ├── output_5326.json │ │ ├── output_5327.json │ │ ├── output_5328.json │ │ ├── output_5329.json │ │ ├── output_5330.json │ │ ├── output_5331.json │ │ ├── output_5332.json │ │ ├── output_5333.json │ │ ├── output_5334.json │ │ ├── output_5335.json │ │ ├── output_5336.json │ │ ├── output_5337.json │ │ ├── output_5338.json │ │ ├── output_5339.json │ │ ├── output_5340.json │ │ ├── output_5341.json │ │ ├── output_5342.json │ │ ├── output_5343.json │ │ ├── output_5344.json │ │ ├── output_5345.json │ │ ├── output_5346.json │ │ ├── output_5347.json │ │ ├── output_5348.json │ │ ├── output_5349.json │ │ ├── output_5350.json │ │ ├── output_5351.json │ │ ├── output_5352.json │ │ ├── output_5353.json │ │ ├── output_5354.json │ │ ├── output_5355.json │ │ ├── output_5356.json │ │ ├── output_5357.json │ │ ├── output_5358.json │ │ ├── output_5359.json │ │ ├── output_5360.json │ │ ├── output_5361.json │ │ ├── output_5362.json │ │ ├── output_5363.json │ │ ├── output_5364.json │ │ ├── output_5365.json │ │ ├── output_5366.json │ │ ├── output_5367.json │ │ ├── output_5368.json │ │ ├── output_5369.json │ │ ├── output_5370.json │ │ ├── output_5371.json │ │ ├── output_5372.json │ │ ├── output_5373.json │ │ ├── output_5374.json │ │ ├── output_5375.json │ │ ├── output_5376.json │ │ ├── output_5377.json │ │ ├── output_5378.json │ │ ├── output_5379.json │ │ ├── output_5380.json │ │ ├── output_5381.json │ │ ├── output_5382.json │ │ ├── output_5383.json │ │ ├── output_5384.json │ │ ├── output_5385.json │ │ ├── output_5386.json │ │ ├── output_5387.json │ │ ├── output_5388.json │ │ ├── output_5389.json │ │ ├── output_5390.json │ │ ├── output_5391.json │ │ ├── output_5392.json │ │ ├── output_5393.json │ │ ├── output_5394.json │ │ ├── output_5395.json │ │ ├── output_5396.json │ │ ├── output_5397.json │ │ ├── output_5398.json │ │ ├── output_5399.json │ │ ├── output_5400.json │ │ ├── output_5401.json │ │ ├── output_5402.json │ │ ├── output_5403.json │ │ ├── output_5404.json │ │ ├── output_5405.json │ │ ├── output_5406.json │ │ ├── output_5407.json │ │ ├── output_5408.json │ │ ├── output_5409.json │ │ ├── output_5410.json │ │ ├── output_5411.json │ │ ├── output_5412.json │ │ ├── output_5413.json │ │ ├── output_5414.json │ │ ├── output_5415.json │ │ ├── output_5416.json │ │ ├── output_5417.json │ │ ├── output_5418.json │ │ ├── output_5419.json │ │ ├── output_5420.json │ │ ├── output_5421.json │ │ ├── output_5422.json │ │ ├── output_5423.json │ │ ├── output_5424.json │ │ ├── output_5425.json │ │ ├── output_5426.json │ │ ├── output_5427.json │ │ ├── output_5428.json │ │ ├── output_5429.json │ │ ├── output_5430.json │ │ ├── output_5431.json │ │ ├── output_5432.json │ │ ├── output_5433.json │ │ ├── output_5434.json │ │ ├── output_5435.json │ │ ├── output_5436.json │ │ ├── output_5437.json │ │ ├── output_5438.json │ │ ├── output_5439.json │ │ ├── output_5440.json │ │ ├── output_5441.json │ │ ├── output_5442.json │ │ ├── output_5443.json │ │ ├── output_5444.json │ │ ├── output_5445.json │ │ ├── output_5446.json │ │ ├── output_5447.json │ │ ├── output_5448.json │ │ ├── output_5449.json │ │ ├── output_5450.json │ │ ├── output_5451.json │ │ ├── output_5452.json │ │ ├── output_5453.json │ │ ├── output_5454.json │ │ ├── output_5455.json │ │ ├── output_5456.json │ │ ├── output_5457.json │ │ ├── output_5458.json │ │ ├── output_5459.json │ │ ├── output_5460.json │ │ ├── output_5461.json │ │ ├── output_5462.json │ │ ├── output_5463.json │ │ ├── output_5464.json │ │ ├── output_5465.json │ │ ├── output_5466.json │ │ ├── output_5467.json │ │ ├── output_5468.json │ │ ├── output_5469.json │ │ ├── output_5470.json │ │ ├── output_5471.json │ │ ├── output_5472.json │ │ ├── output_5473.json │ │ ├── output_5474.json │ │ ├── output_5475.json │ │ ├── output_5476.json │ │ ├── output_5477.json │ │ ├── output_5478.json │ │ ├── output_5479.json │ │ ├── output_5480.json │ │ ├── output_5481.json │ │ ├── output_5482.json │ │ ├── output_5483.json │ │ ├── output_5484.json │ │ ├── output_5485.json │ │ ├── output_5486.json │ │ ├── output_5487.json │ │ ├── output_5488.json │ │ ├── output_5489.json │ │ ├── output_5490.json │ │ ├── output_5491.json │ │ ├── output_5492.json │ │ ├── output_5493.json │ │ ├── output_5494.json │ │ ├── output_5495.json │ │ ├── output_5496.json │ │ ├── output_5497.json │ │ ├── output_5498.json │ │ ├── output_5499.json │ │ ├── output_5500.json │ │ ├── output_5501.json │ │ ├── output_5502.json │ │ ├── output_5503.json │ │ ├── output_5504.json │ │ ├── output_5505.json │ │ ├── output_5506.json │ │ ├── output_5507.json │ │ ├── output_5508.json │ │ ├── output_5509.json │ │ ├── output_5510.json │ │ ├── output_5511.json │ │ ├── output_5512.json │ │ ├── output_5513.json │ │ ├── output_5514.json │ │ ├── output_5515.json │ │ ├── output_5516.json │ │ ├── output_5517.json │ │ ├── output_5518.json │ │ ├── output_5519.json │ │ ├── output_5520.json │ │ ├── output_5521.json │ │ ├── output_5522.json │ │ ├── output_5523.json │ │ ├── output_5524.json │ │ ├── output_5525.json │ │ ├── output_5526.json │ │ ├── output_5527.json │ │ ├── output_5528.json │ │ ├── output_5529.json │ │ ├── output_5530.json │ │ ├── output_5531.json │ │ ├── output_5532.json │ │ ├── output_5533.json │ │ ├── output_5534.json │ │ ├── output_5535.json │ │ ├── output_5536.json │ │ ├── output_5537.json │ │ ├── output_5538.json │ │ ├── output_5539.json │ │ ├── output_5540.json │ │ ├── output_5541.json │ │ ├── output_5542.json │ │ ├── output_5543.json │ │ ├── output_5544.json │ │ ├── output_5545.json │ │ ├── output_5546.json │ │ ├── output_5547.json │ │ ├── output_5548.json │ │ ├── output_5549.json │ │ ├── output_5550.json │ │ ├── output_5551.json │ │ ├── output_5552.json │ │ ├── output_5553.json │ │ ├── output_5554.json │ │ ├── output_5555.json │ │ ├── output_5556.json │ │ ├── output_5557.json │ │ ├── output_5558.json │ │ ├── output_5559.json │ │ ├── output_5560.json │ │ ├── output_5561.json │ │ ├── output_5562.json │ │ ├── output_5563.json │ │ ├── output_5564.json │ │ ├── output_5565.json │ │ ├── output_5566.json │ │ ├── output_5567.json │ │ ├── output_5568.json │ │ ├── output_5569.json │ │ ├── output_5570.json │ │ ├── output_5571.json │ │ ├── output_5572.json │ │ ├── output_5573.json │ │ ├── output_5574.json │ │ ├── output_5575.json │ │ ├── output_5576.json │ │ ├── output_5577.json │ │ ├── output_5578.json │ │ ├── output_5579.json │ │ ├── output_5580.json │ │ ├── output_5581.json │ │ ├── output_5582.json │ │ ├── output_5583.json │ │ ├── output_5584.json │ │ ├── output_5585.json │ │ ├── output_5586.json │ │ ├── output_5587.json │ │ ├── output_5588.json │ │ ├── output_5589.json │ │ ├── output_5590.json │ │ ├── output_5591.json │ │ ├── output_5592.json │ │ ├── output_5593.json │ │ ├── output_5594.json │ │ ├── output_5595.json │ │ ├── output_5596.json │ │ ├── output_5597.json │ │ ├── output_5598.json │ │ ├── output_5599.json │ │ ├── output_5600.json │ │ ├── output_5601.json │ │ ├── output_5602.json │ │ ├── output_5603.json │ │ ├── output_5604.json │ │ ├── output_5605.json │ │ ├── output_5606.json │ │ ├── output_5607.json │ │ ├── output_5608.json │ │ ├── output_5609.json │ │ ├── output_5610.json │ │ ├── output_5611.json │ │ ├── output_5612.json │ │ ├── output_5613.json │ │ ├── output_5614.json │ │ ├── output_5615.json │ │ ├── output_5616.json │ │ ├── output_5617.json │ │ ├── output_5618.json │ │ ├── output_5619.json │ │ ├── output_5620.json │ │ ├── output_5621.json │ │ ├── output_5622.json │ │ ├── output_5623.json │ │ ├── output_5624.json │ │ ├── output_5625.json │ │ ├── output_5626.json │ │ ├── output_5627.json │ │ ├── output_5628.json │ │ ├── output_5629.json │ │ ├── output_5630.json │ │ ├── output_5631.json │ │ ├── output_5632.json │ │ ├── output_5633.json │ │ ├── output_5634.json │ │ ├── output_5635.json │ │ ├── output_5636.json │ │ ├── output_5637.json │ │ ├── output_5638.json │ │ ├── output_5639.json │ │ ├── output_5640.json │ │ ├── output_5641.json │ │ ├── output_5642.json │ │ ├── output_5643.json │ │ ├── output_5644.json │ │ ├── output_5645.json │ │ ├── output_5646.json │ │ ├── output_5647.json │ │ ├── output_5648.json │ │ ├── output_5649.json │ │ ├── output_5650.json │ │ ├── output_5651.json │ │ ├── output_5652.json │ │ ├── output_5653.json │ │ ├── output_5654.json │ │ ├── output_5655.json │ │ ├── output_5656.json │ │ ├── output_5657.json │ │ ├── output_5658.json │ │ ├── output_5659.json │ │ ├── output_5660.json │ │ ├── output_5661.json │ │ ├── output_5662.json │ │ ├── output_5663.json │ │ ├── output_5664.json │ │ ├── output_5665.json │ │ ├── output_5666.json │ │ ├── output_5667.json │ │ ├── output_5668.json │ │ ├── output_5669.json │ │ ├── output_5670.json │ │ ├── output_5671.json │ │ ├── output_5672.json │ │ ├── output_5673.json │ │ ├── output_5674.json │ │ ├── output_5675.json │ │ ├── output_5676.json │ │ ├── output_5677.json │ │ ├── output_5678.json │ │ ├── output_5679.json │ │ ├── output_5680.json │ │ ├── output_5681.json │ │ ├── output_5682.json │ │ ├── output_5683.json │ │ ├── output_5684.json │ │ ├── output_5685.json │ │ ├── output_5686.json │ │ ├── output_5687.json │ │ ├── output_5688.json │ │ ├── output_5689.json │ │ ├── output_5690.json │ │ ├── output_5691.json │ │ ├── output_5692.json │ │ ├── output_5693.json │ │ ├── output_5694.json │ │ ├── output_5695.json │ │ ├── output_5696.json │ │ ├── output_5697.json │ │ ├── output_5698.json │ │ ├── output_5699.json │ │ ├── output_5700.json │ │ ├── output_5701.json │ │ ├── output_5702.json │ │ ├── output_5703.json │ │ ├── output_5704.json │ │ ├── output_5705.json │ │ ├── output_5706.json │ │ ├── output_5707.json │ │ ├── output_5708.json │ │ ├── output_5709.json │ │ ├── output_5710.json │ │ ├── output_5711.json │ │ ├── output_5712.json │ │ ├── output_5713.json │ │ ├── output_5714.json │ │ ├── output_5715.json │ │ ├── output_5716.json │ │ ├── output_5717.json │ │ ├── output_5718.json │ │ ├── output_5719.json │ │ ├── output_5720.json │ │ ├── output_5721.json │ │ ├── output_5722.json │ │ ├── output_5723.json │ │ ├── output_5724.json │ │ ├── output_5725.json │ │ ├── output_5726.json │ │ ├── output_5727.json │ │ ├── output_5728.json │ │ ├── output_5729.json │ │ ├── output_5730.json │ │ ├── output_5731.json │ │ ├── output_5732.json │ │ ├── output_5733.json │ │ ├── output_5734.json │ │ ├── output_5735.json │ │ ├── output_5736.json │ │ ├── output_5737.json │ │ ├── output_5738.json │ │ ├── output_5739.json │ │ ├── output_5740.json │ │ ├── output_5741.json │ │ ├── output_5742.json │ │ ├── output_5743.json │ │ ├── output_5744.json │ │ ├── output_5745.json │ │ ├── output_5746.json │ │ ├── output_5747.json │ │ ├── output_5748.json │ │ ├── output_5749.json │ │ ├── output_5750.json │ │ ├── output_5751.json │ │ ├── output_5752.json │ │ ├── output_5753.json │ │ ├── output_5754.json │ │ ├── output_5755.json │ │ ├── output_5756.json │ │ ├── output_5757.json │ │ ├── output_5758.json │ │ ├── output_5759.json │ │ ├── output_5760.json │ │ ├── output_5761.json │ │ ├── output_5762.json │ │ ├── output_5763.json │ │ ├── output_5764.json │ │ ├── output_5765.json │ │ ├── output_5766.json │ │ ├── output_5767.json │ │ ├── output_5768.json │ │ ├── output_5769.json │ │ ├── output_5770.json │ │ ├── output_5771.json │ │ ├── output_5772.json │ │ ├── output_5773.json │ │ ├── output_5774.json │ │ ├── output_5775.json │ │ ├── output_5776.json │ │ ├── output_5777.json │ │ ├── output_5778.json │ │ ├── output_5779.json │ │ ├── output_5780.json │ │ ├── output_5781.json │ │ ├── output_5782.json │ │ ├── output_5783.json │ │ ├── output_5784.json │ │ ├── output_5785.json │ │ ├── output_5786.json │ │ ├── output_5787.json │ │ ├── output_5788.json │ │ ├── output_5789.json │ │ ├── output_5790.json │ │ ├── output_5791.json │ │ ├── output_5792.json │ │ ├── output_5793.json │ │ ├── output_5794.json │ │ ├── output_5795.json │ │ ├── output_5796.json │ │ ├── output_5797.json │ │ ├── output_5798.json │ │ ├── output_5799.json │ │ ├── output_5800.json │ │ ├── output_5801.json │ │ ├── output_5802.json │ │ ├── output_5803.json │ │ ├── output_5804.json │ │ ├── output_5805.json │ │ ├── output_5806.json │ │ ├── output_5807.json │ │ ├── output_5808.json │ │ ├── output_5809.json │ │ ├── output_5810.json │ │ ├── output_5811.json │ │ ├── output_5812.json │ │ ├── output_5813.json │ │ ├── output_5814.json │ │ ├── output_5815.json │ │ ├── output_5816.json │ │ ├── output_5817.json │ │ ├── output_5818.json │ │ ├── output_5819.json │ │ ├── output_5820.json │ │ ├── output_5821.json │ │ ├── output_5822.json │ │ ├── output_5823.json │ │ ├── output_5824.json │ │ ├── output_5825.json │ │ ├── output_5826.json │ │ ├── output_5827.json │ │ ├── output_5828.json │ │ ├── output_5829.json │ │ ├── output_5830.json │ │ ├── output_5831.json │ │ ├── output_5832.json │ │ ├── output_5833.json │ │ ├── output_5834.json │ │ ├── output_5835.json │ │ ├── output_5836.json │ │ ├── output_5837.json │ │ ├── output_5838.json │ │ ├── output_5839.json │ │ ├── output_5840.json │ │ ├── output_5841.json │ │ ├── output_5842.json │ │ ├── output_5843.json │ │ ├── output_5844.json │ │ ├── output_5845.json │ │ ├── output_5846.json │ │ ├── output_5847.json │ │ ├── output_5848.json │ │ ├── output_5849.json │ │ ├── output_5850.json │ │ ├── output_5851.json │ │ ├── output_5852.json │ │ ├── output_5853.json │ │ ├── output_5854.json │ │ ├── output_5855.json │ │ ├── output_5856.json │ │ ├── output_5857.json │ │ ├── output_5858.json │ │ ├── output_5859.json │ │ ├── output_5860.json │ │ ├── output_5861.json │ │ ├── output_5862.json │ │ ├── output_5863.json │ │ ├── output_5864.json │ │ ├── output_5865.json │ │ ├── output_5866.json │ │ ├── output_5867.json │ │ ├── output_5868.json │ │ ├── output_5869.json │ │ ├── output_5870.json │ │ ├── output_5871.json │ │ ├── output_5872.json │ │ ├── output_5873.json │ │ ├── output_5874.json │ │ ├── output_5875.json │ │ ├── output_5876.json │ │ ├── output_5877.json │ │ ├── output_5878.json │ │ ├── output_5879.json │ │ ├── output_5880.json │ │ ├── output_5881.json │ │ ├── output_5882.json │ │ ├── output_5883.json │ │ ├── output_5884.json │ │ ├── output_5885.json │ │ ├── output_5886.json │ │ ├── output_5887.json │ │ ├── output_5888.json │ │ ├── output_5889.json │ │ ├── output_5890.json │ │ ├── output_5891.json │ │ ├── output_5892.json │ │ ├── output_5893.json │ │ ├── output_5894.json │ │ ├── output_5895.json │ │ ├── output_5896.json │ │ ├── output_5897.json │ │ ├── output_5898.json │ │ ├── output_5899.json │ │ ├── output_5900.json │ │ ├── output_5901.json │ │ ├── output_5902.json │ │ ├── output_5903.json │ │ ├── output_5904.json │ │ ├── output_5905.json │ │ ├── output_5906.json │ │ ├── output_5907.json │ │ ├── output_5908.json │ │ ├── output_5909.json │ │ ├── output_5910.json │ │ ├── output_5911.json │ │ ├── output_5912.json │ │ ├── output_5913.json │ │ ├── output_5914.json │ │ ├── output_5915.json │ │ ├── output_5916.json │ │ ├── output_5917.json │ │ ├── output_5918.json │ │ ├── output_5919.json │ │ ├── output_5920.json │ │ ├── output_5921.json │ │ ├── output_5922.json │ │ ├── output_5923.json │ │ ├── output_5924.json │ │ ├── output_5925.json │ │ ├── output_5926.json │ │ ├── output_5927.json │ │ ├── output_5928.json │ │ ├── output_5929.json │ │ ├── output_5930.json │ │ ├── output_5931.json │ │ ├── output_5932.json │ │ ├── output_5933.json │ │ ├── output_5934.json │ │ ├── output_5935.json │ │ ├── output_5936.json │ │ ├── output_5937.json │ │ ├── output_5938.json │ │ ├── output_5939.json │ │ ├── output_5940.json │ │ ├── output_5941.json │ │ ├── output_5942.json │ │ ├── output_5943.json │ │ ├── output_5944.json │ │ ├── output_5945.json │ │ ├── output_5946.json │ │ ├── output_5947.json │ │ ├── output_5948.json │ │ ├── output_5949.json │ │ ├── output_5950.json │ │ ├── output_5951.json │ │ ├── output_5952.json │ │ ├── output_5953.json │ │ ├── output_5954.json │ │ ├── output_5955.json │ │ ├── output_5956.json │ │ ├── output_5957.json │ │ ├── output_5958.json │ │ ├── output_5959.json │ │ ├── output_5960.json │ │ ├── output_5961.json │ │ ├── output_5962.json │ │ ├── output_5963.json │ │ ├── output_5964.json │ │ ├── output_5965.json │ │ ├── output_5966.json │ │ ├── output_5967.json │ │ ├── output_5968.json │ │ ├── output_5969.json │ │ ├── output_5970.json │ │ ├── output_5971.json │ │ ├── output_5972.json │ │ ├── output_5973.json │ │ ├── output_5974.json │ │ ├── output_5975.json │ │ ├── output_5976.json │ │ ├── output_5977.json │ │ ├── output_5978.json │ │ ├── output_5979.json │ │ ├── output_5980.json │ │ ├── output_5981.json │ │ ├── output_5982.json │ │ ├── output_5983.json │ │ ├── output_5984.json │ │ ├── output_5985.json │ │ ├── output_5986.json │ │ ├── output_5987.json │ │ ├── output_5988.json │ │ ├── output_5989.json │ │ ├── output_5990.json │ │ ├── output_5991.json │ │ ├── output_5992.json │ │ ├── output_5993.json │ │ ├── output_5994.json │ │ ├── output_5995.json │ │ ├── output_5996.json │ │ ├── output_5997.json │ │ ├── output_5998.json │ │ ├── output_5999.json │ │ ├── output_6000.json │ │ ├── output_6001.json │ │ ├── output_6002.json │ │ ├── output_6003.json │ │ ├── output_6004.json │ │ ├── output_6005.json │ │ ├── output_6006.json │ │ ├── output_6007.json │ │ ├── output_6008.json │ │ ├── output_6009.json │ │ ├── output_6010.json │ │ ├── output_6011.json │ │ ├── output_6012.json │ │ ├── output_6013.json │ │ ├── output_6014.json │ │ ├── output_6015.json │ │ ├── output_6016.json │ │ ├── output_6017.json │ │ ├── output_6018.json │ │ ├── output_6019.json │ │ ├── output_6020.json │ │ ├── output_6021.json │ │ ├── output_6022.json │ │ ├── output_6023.json │ │ ├── output_6024.json │ │ ├── output_6025.json │ │ ├── output_6026.json │ │ ├── output_6027.json │ │ ├── output_6028.json │ │ ├── output_6029.json │ │ ├── output_6030.json │ │ ├── output_6031.json │ │ ├── output_6032.json │ │ ├── output_6033.json │ │ ├── output_6034.json │ │ ├── output_6035.json │ │ ├── output_6036.json │ │ ├── output_6037.json │ │ ├── output_6038.json │ │ ├── output_6039.json │ │ ├── output_6040.json │ │ ├── output_6041.json │ │ ├── output_6042.json │ │ ├── output_6043.json │ │ ├── output_6044.json │ │ ├── output_6045.json │ │ ├── output_6046.json │ │ ├── output_6047.json │ │ ├── output_6048.json │ │ ├── output_6049.json │ │ ├── output_6050.json │ │ ├── output_6051.json │ │ ├── output_6052.json │ │ ├── output_6053.json │ │ ├── output_6054.json │ │ ├── output_6055.json │ │ ├── output_6056.json │ │ ├── output_6057.json │ │ ├── output_6058.json │ │ ├── output_6059.json │ │ ├── output_6060.json │ │ ├── output_6061.json │ │ ├── output_6062.json │ │ ├── output_6063.json │ │ ├── output_6064.json │ │ ├── output_6065.json │ │ ├── output_6066.json │ │ ├── output_6067.json │ │ ├── output_6068.json │ │ ├── output_6069.json │ │ ├── output_6070.json │ │ ├── output_6071.json │ │ ├── output_6072.json │ │ ├── output_6073.json │ │ ├── output_6074.json │ │ ├── output_6075.json │ │ ├── output_6076.json │ │ ├── output_6077.json │ │ ├── output_6078.json │ │ ├── output_6079.json │ │ ├── output_6080.json │ │ ├── output_6081.json │ │ ├── output_6082.json │ │ ├── output_6083.json │ │ ├── output_6084.json │ │ ├── output_6085.json │ │ ├── output_6086.json │ │ ├── output_6087.json │ │ ├── output_6088.json │ │ ├── output_6089.json │ │ ├── output_6090.json │ │ ├── output_6091.json │ │ ├── output_6092.json │ │ ├── output_6093.json │ │ ├── output_6094.json │ │ ├── output_6095.json │ │ ├── output_6096.json │ │ ├── output_6097.json │ │ ├── output_6098.json │ │ ├── output_6099.json │ │ ├── output_6100.json │ │ ├── output_6101.json │ │ ├── output_6102.json │ │ ├── output_6103.json │ │ ├── output_6104.json │ │ ├── output_6105.json │ │ ├── output_6106.json │ │ ├── output_6107.json │ │ ├── output_6108.json │ │ ├── output_6109.json │ │ ├── output_6110.json │ │ ├── output_6111.json │ │ ├── output_6112.json │ │ ├── output_6113.json │ │ ├── output_6114.json │ │ ├── output_6115.json │ │ ├── output_6116.json │ │ ├── output_6117.json │ │ ├── output_6118.json │ │ ├── output_6119.json │ │ ├── output_6120.json │ │ ├── output_6121.json │ │ ├── output_6122.json │ │ ├── output_6123.json │ │ ├── output_6124.json │ │ ├── output_6125.json │ │ ├── output_6126.json │ │ ├── output_6127.json │ │ ├── output_6128.json │ │ ├── output_6129.json │ │ ├── output_6130.json │ │ ├── output_6131.json │ │ ├── output_6132.json │ │ ├── output_6133.json │ │ ├── output_6134.json │ │ ├── output_6135.json │ │ ├── output_6136.json │ │ ├── output_6137.json │ │ ├── output_6138.json │ │ ├── output_6139.json │ │ ├── output_6140.json │ │ ├── output_6141.json │ │ ├── output_6142.json │ │ ├── output_6143.json │ │ ├── output_6144.json │ │ ├── output_6145.json │ │ ├── output_6146.json │ │ ├── output_6147.json │ │ ├── output_6148.json │ │ ├── output_6149.json │ │ ├── output_6150.json │ │ ├── output_6151.json │ │ ├── output_6152.json │ │ ├── output_6153.json │ │ ├── output_6154.json │ │ ├── output_6155.json │ │ ├── output_6156.json │ │ ├── output_6157.json │ │ ├── output_6158.json │ │ ├── output_6159.json │ │ ├── output_6160.json │ │ ├── output_6161.json │ │ ├── output_6162.json │ │ ├── output_6163.json │ │ ├── output_6164.json │ │ ├── output_6165.json │ │ ├── output_6166.json │ │ ├── output_6167.json │ │ ├── output_6168.json │ │ ├── output_6169.json │ │ ├── output_6170.json │ │ ├── output_6171.json │ │ ├── output_6172.json │ │ ├── output_6173.json │ │ ├── output_6174.json │ │ ├── output_6175.json │ │ ├── output_6176.json │ │ ├── output_6177.json │ │ ├── output_6178.json │ │ ├── output_6179.json │ │ ├── output_6180.json │ │ ├── output_6181.json │ │ ├── output_6182.json │ │ ├── output_6183.json │ │ ├── output_6184.json │ │ ├── output_6185.json │ │ ├── output_6186.json │ │ ├── output_6187.json │ │ ├── output_6188.json │ │ ├── output_6189.json │ │ ├── output_6190.json │ │ ├── output_6191.json │ │ ├── output_6192.json │ │ ├── output_6193.json │ │ ├── output_6194.json │ │ ├── output_6195.json │ │ ├── output_6196.json │ │ ├── output_6197.json │ │ ├── output_6198.json │ │ ├── output_6199.json │ │ ├── output_6200.json │ │ ├── output_6201.json │ │ ├── output_6202.json │ │ ├── output_6203.json │ │ ├── output_6204.json │ │ ├── output_6205.json │ │ ├── output_6206.json │ │ ├── output_6207.json │ │ ├── output_6208.json │ │ ├── output_6209.json │ │ ├── output_6210.json │ │ ├── output_6211.json │ │ ├── output_6212.json │ │ ├── output_6213.json │ │ ├── output_6214.json │ │ ├── output_6215.json │ │ ├── output_6216.json │ │ ├── output_6217.json │ │ ├── output_6218.json │ │ ├── output_6219.json │ │ ├── output_6220.json │ │ ├── output_6221.json │ │ ├── output_6222.json │ │ ├── output_6223.json │ │ ├── output_6224.json │ │ ├── output_6225.json │ │ ├── output_6226.json │ │ ├── output_6227.json │ │ ├── output_6228.json │ │ ├── output_6229.json │ │ ├── output_6230.json │ │ ├── output_6231.json │ │ ├── output_6232.json │ │ ├── output_6233.json │ │ ├── output_6234.json │ │ ├── output_6235.json │ │ ├── output_6236.json │ │ ├── output_6237.json │ │ ├── output_6238.json │ │ ├── output_6239.json │ │ ├── output_6240.json │ │ ├── output_6241.json │ │ ├── output_6242.json │ │ ├── output_6243.json │ │ ├── output_6244.json │ │ ├── output_6245.json │ │ ├── output_6246.json │ │ ├── output_6247.json │ │ ├── output_6248.json │ │ ├── output_6249.json │ │ ├── output_6250.json │ │ ├── output_6251.json │ │ ├── output_6252.json │ │ ├── output_6253.json │ │ ├── output_6254.json │ │ ├── output_6255.json │ │ ├── output_6256.json │ │ ├── output_6257.json │ │ ├── output_6258.json │ │ ├── output_6259.json │ │ ├── output_6260.json │ │ ├── output_6261.json │ │ ├── output_6262.json │ │ ├── output_6263.json │ │ ├── output_6264.json │ │ ├── output_6265.json │ │ ├── output_6266.json │ │ ├── output_6267.json │ │ ├── output_6268.json │ │ ├── output_6269.json │ │ ├── output_6270.json │ │ ├── output_6271.json │ │ ├── output_6272.json │ │ ├── output_6273.json │ │ ├── output_6274.json │ │ ├── output_6275.json │ │ ├── output_6276.json │ │ ├── output_6277.json │ │ ├── output_6278.json │ │ ├── output_6279.json │ │ ├── output_6280.json │ │ ├── output_6281.json │ │ ├── output_6282.json │ │ ├── output_6283.json │ │ ├── output_6284.json │ │ ├── output_6285.json │ │ ├── output_6286.json │ │ ├── output_6287.json │ │ ├── output_6288.json │ │ ├── output_6289.json │ │ ├── output_6290.json │ │ ├── output_6291.json │ │ ├── output_6292.json │ │ ├── output_6293.json │ │ ├── output_6294.json │ │ ├── output_6295.json │ │ ├── output_6296.json │ │ ├── output_6297.json │ │ ├── output_6298.json │ │ ├── output_6299.json │ │ ├── output_6300.json │ │ ├── output_6301.json │ │ ├── output_6302.json │ │ ├── output_6303.json │ │ ├── output_6304.json │ │ ├── output_6305.json │ │ ├── output_6306.json │ │ ├── output_6307.json │ │ ├── output_6308.json │ │ ├── output_6309.json │ │ ├── output_6310.json │ │ ├── output_6311.json │ │ ├── output_6312.json │ │ ├── output_6313.json │ │ ├── output_6314.json │ │ ├── output_6315.json │ │ ├── output_6316.json │ │ ├── output_6317.json │ │ ├── output_6318.json │ │ ├── output_6319.json │ │ ├── output_6320.json │ │ ├── output_6321.json │ │ ├── output_6322.json │ │ ├── output_6323.json │ │ ├── output_6324.json │ │ ├── output_6325.json │ │ ├── output_6326.json │ │ ├── output_6327.json │ │ ├── output_6328.json │ │ ├── output_6329.json │ │ ├── output_6330.json │ │ ├── output_6331.json │ │ ├── output_6332.json │ │ ├── output_6333.json │ │ ├── output_6334.json │ │ ├── output_6335.json │ │ ├── output_6336.json │ │ ├── output_6337.json │ │ ├── output_6338.json │ │ ├── output_6339.json │ │ ├── output_6340.json │ │ ├── output_6341.json │ │ ├── output_6342.json │ │ ├── output_6343.json │ │ ├── output_6344.json │ │ ├── output_6345.json │ │ ├── output_6346.json │ │ ├── output_6347.json │ │ ├── output_6348.json │ │ ├── output_6349.json │ │ ├── output_6350.json │ │ ├── output_6351.json │ │ ├── output_6352.json │ │ ├── output_6353.json │ │ ├── output_6354.json │ │ ├── output_6355.json │ │ ├── output_6356.json │ │ ├── output_6357.json │ │ ├── output_6358.json │ │ ├── output_6359.json │ │ ├── output_6360.json │ │ ├── output_6361.json │ │ ├── output_6362.json │ │ ├── output_6363.json │ │ ├── output_6364.json │ │ ├── output_6365.json │ │ ├── output_6366.json │ │ ├── output_6367.json │ │ ├── output_6368.json │ │ ├── output_6369.json │ │ ├── output_6370.json │ │ ├── output_6371.json │ │ ├── output_6372.json │ │ ├── output_6373.json │ │ ├── output_6374.json │ │ ├── output_6375.json │ │ ├── output_6376.json │ │ ├── output_6377.json │ │ ├── output_6378.json │ │ ├── output_6379.json │ │ ├── output_6380.json │ │ ├── output_6381.json │ │ ├── output_6382.json │ │ ├── output_6383.json │ │ ├── output_6384.json │ │ ├── output_6385.json │ │ ├── output_6386.json │ │ ├── output_6387.json │ │ ├── output_6388.json │ │ ├── output_6389.json │ │ ├── output_6390.json │ │ ├── output_6391.json │ │ ├── output_6392.json │ │ ├── output_6393.json │ │ ├── output_6394.json │ │ ├── output_6395.json │ │ ├── output_6396.json │ │ ├── output_6397.json │ │ ├── output_6398.json │ │ ├── output_6399.json │ │ ├── output_6400.json │ │ ├── output_6401.json │ │ ├── output_6402.json │ │ ├── output_6403.json │ │ ├── output_6404.json │ │ ├── output_6405.json │ │ ├── output_6406.json │ │ ├── output_6407.json │ │ ├── output_6408.json │ │ ├── output_6409.json │ │ ├── output_6410.json │ │ ├── output_6411.json │ │ ├── output_6412.json │ │ ├── output_6413.json │ │ ├── output_6414.json │ │ ├── output_6415.json │ │ ├── output_6416.json │ │ ├── output_6417.json │ │ ├── output_6418.json │ │ ├── output_6419.json │ │ ├── output_6420.json │ │ ├── output_6421.json │ │ ├── output_6422.json │ │ ├── output_6423.json │ │ ├── output_6424.json │ │ ├── output_6425.json │ │ ├── output_6426.json │ │ ├── output_6427.json │ │ ├── output_6428.json │ │ ├── output_6429.json │ │ ├── output_6430.json │ │ ├── output_6431.json │ │ ├── output_6432.json │ │ ├── output_6433.json │ │ ├── output_6434.json │ │ ├── output_6435.json │ │ ├── output_6436.json │ │ ├── output_6437.json │ │ ├── output_6438.json │ │ ├── output_6439.json │ │ ├── output_6440.json │ │ ├── output_6441.json │ │ ├── output_6442.json │ │ ├── output_6443.json │ │ ├── output_6444.json │ │ ├── output_6445.json │ │ ├── output_6446.json │ │ ├── output_6447.json │ │ ├── output_6448.json │ │ ├── output_6449.json │ │ ├── output_6450.json │ │ ├── output_6451.json │ │ ├── output_6452.json │ │ ├── output_6453.json │ │ ├── output_6454.json │ │ ├── output_6455.json │ │ ├── output_6456.json │ │ ├── output_6457.json │ │ ├── output_6458.json │ │ ├── output_6459.json │ │ ├── output_6460.json │ │ ├── output_6461.json │ │ ├── output_6462.json │ │ ├── output_6463.json │ │ ├── output_6464.json │ │ ├── output_6465.json │ │ ├── output_6466.json │ │ ├── output_6467.json │ │ ├── output_6468.json │ │ ├── output_6469.json │ │ ├── output_6470.json │ │ ├── output_6471.json │ │ ├── output_6472.json │ │ ├── output_6473.json │ │ ├── output_6474.json │ │ ├── output_6475.json │ │ ├── output_6476.json │ │ ├── output_6477.json │ │ ├── output_6478.json │ │ ├── output_6479.json │ │ ├── output_6480.json │ │ ├── output_6481.json │ │ ├── output_6482.json │ │ ├── output_6483.json │ │ ├── output_6484.json │ │ ├── output_6485.json │ │ ├── output_6486.json │ │ ├── output_6487.json │ │ ├── output_6488.json │ │ ├── output_6489.json │ │ ├── output_6490.json │ │ ├── output_6491.json │ │ ├── output_6492.json │ │ ├── output_6493.json │ │ ├── output_6494.json │ │ ├── output_6495.json │ │ ├── output_6496.json │ │ ├── output_6497.json │ │ ├── output_6498.json │ │ ├── output_6499.json │ │ ├── output_6500.json │ │ ├── output_6501.json │ │ ├── output_6502.json │ │ ├── output_6503.json │ │ ├── output_6504.json │ │ ├── output_6505.json │ │ ├── output_6506.json │ │ ├── output_6507.json │ │ ├── output_6508.json │ │ ├── output_6509.json │ │ ├── output_6510.json │ │ ├── output_6511.json │ │ ├── output_6512.json │ │ ├── output_6513.json │ │ ├── output_6514.json │ │ ├── output_6515.json │ │ ├── output_6516.json │ │ ├── output_6517.json │ │ ├── output_6518.json │ │ ├── output_6519.json │ │ ├── output_6520.json │ │ ├── output_6521.json │ │ ├── output_6522.json │ │ ├── output_6523.json │ │ ├── output_6524.json │ │ ├── output_6525.json │ │ ├── output_6526.json │ │ ├── output_6527.json │ │ ├── output_6528.json │ │ ├── output_6529.json │ │ ├── output_6530.json │ │ ├── output_6531.json │ │ ├── output_6532.json │ │ ├── output_6533.json │ │ ├── output_6534.json │ │ ├── output_6535.json │ │ ├── output_6536.json │ │ ├── output_6537.json │ │ ├── output_6538.json │ │ ├── output_6539.json │ │ ├── output_6540.json │ │ ├── output_6541.json │ │ ├── output_6542.json │ │ ├── output_6543.json │ │ ├── output_6544.json │ │ ├── output_6545.json │ │ ├── output_6546.json │ │ ├── output_6547.json │ │ ├── output_6548.json │ │ ├── output_6549.json │ │ ├── output_6550.json │ │ ├── output_6551.json │ │ ├── output_6552.json │ │ ├── output_6553.json │ │ ├── output_6554.json │ │ ├── output_6555.json │ │ ├── output_6556.json │ │ ├── output_6557.json │ │ ├── output_6558.json │ │ ├── output_6559.json │ │ ├── output_6560.json │ │ ├── output_6561.json │ │ ├── output_6562.json │ │ ├── output_6563.json │ │ ├── output_6564.json │ │ ├── output_6565.json │ │ ├── output_6566.json │ │ ├── output_6567.json │ │ ├── output_6568.json │ │ ├── output_6569.json │ │ ├── output_6570.json │ │ ├── output_6571.json │ │ ├── output_6572.json │ │ ├── output_6573.json │ │ ├── output_6574.json │ │ ├── output_6575.json │ │ ├── output_6576.json │ │ ├── output_6577.json │ │ ├── output_6578.json │ │ ├── output_6579.json │ │ ├── output_6580.json │ │ ├── output_6581.json │ │ ├── output_6582.json │ │ ├── output_6583.json │ │ ├── output_6584.json │ │ ├── output_6585.json │ │ ├── output_6586.json │ │ ├── output_6587.json │ │ ├── output_6588.json │ │ ├── output_6589.json │ │ ├── output_6590.json │ │ ├── output_6591.json │ │ ├── output_6592.json │ │ ├── output_6593.json │ │ ├── output_6594.json │ │ ├── output_6595.json │ │ ├── output_6596.json │ │ ├── output_6597.json │ │ ├── output_6598.json │ │ ├── output_6599.json │ │ ├── output_6600.json │ │ ├── output_6601.json │ │ ├── output_6602.json │ │ ├── output_6603.json │ │ ├── output_6604.json │ │ ├── output_6605.json │ │ ├── output_6606.json │ │ ├── output_6607.json │ │ ├── output_6608.json │ │ ├── output_6609.json │ │ ├── output_6610.json │ │ ├── output_6611.json │ │ ├── output_6612.json │ │ ├── output_6613.json │ │ ├── output_6614.json │ │ ├── output_6615.json │ │ ├── output_6616.json │ │ ├── output_6617.json │ │ ├── output_6618.json │ │ ├── output_6619.json │ │ ├── output_6620.json │ │ ├── output_6621.json │ │ ├── output_6622.json │ │ ├── output_6623.json │ │ ├── output_6624.json │ │ ├── output_6625.json │ │ ├── output_6626.json │ │ ├── output_6627.json │ │ ├── output_6628.json │ │ ├── output_6629.json │ │ ├── output_6630.json │ │ ├── output_6631.json │ │ ├── output_6632.json │ │ ├── output_6633.json │ │ ├── output_6634.json │ │ ├── output_6635.json │ │ ├── output_6636.json │ │ ├── output_6637.json │ │ ├── output_6638.json │ │ ├── output_6639.json │ │ ├── output_6640.json │ │ ├── output_6641.json │ │ ├── output_6642.json │ │ ├── output_6643.json │ │ ├── output_6644.json │ │ ├── output_6645.json │ │ ├── output_6646.json │ │ ├── output_6647.json │ │ ├── output_6648.json │ │ ├── output_6649.json │ │ ├── output_6650.json │ │ ├── output_6651.json │ │ ├── output_6652.json │ │ ├── output_6653.json │ │ ├── output_6654.json │ │ ├── output_6655.json │ │ ├── output_6656.json │ │ ├── output_6657.json │ │ ├── output_6658.json │ │ ├── output_6659.json │ │ ├── output_6660.json │ │ ├── output_6661.json │ │ ├── output_6662.json │ │ ├── output_6663.json │ │ ├── output_6664.json │ │ ├── output_6665.json │ │ ├── output_6666.json │ │ ├── output_6667.json │ │ ├── output_6668.json │ │ ├── output_6669.json │ │ ├── output_6670.json │ │ ├── output_6671.json │ │ ├── output_6672.json │ │ ├── output_6673.json │ │ ├── output_6674.json │ │ ├── output_6675.json │ │ ├── output_6676.json │ │ ├── output_6677.json │ │ ├── output_6678.json │ │ ├── output_6679.json │ │ ├── output_6680.json │ │ ├── output_6681.json │ │ ├── output_6682.json │ │ ├── output_6683.json │ │ ├── output_6684.json │ │ ├── output_6685.json │ │ ├── output_6686.json │ │ ├── output_6687.json │ │ ├── output_6688.json │ │ ├── output_6689.json │ │ ├── output_6690.json │ │ ├── output_6691.json │ │ ├── output_6692.json │ │ ├── output_6693.json │ │ ├── output_6694.json │ │ ├── output_6695.json │ │ ├── output_6696.json │ │ ├── output_6697.json │ │ ├── output_6698.json │ │ ├── output_6699.json │ │ ├── output_6700.json │ │ ├── output_6701.json │ │ ├── output_6702.json │ │ ├── output_6703.json │ │ ├── output_6704.json │ │ ├── output_6705.json │ │ ├── output_6706.json │ │ ├── output_6707.json │ │ ├── output_6708.json │ │ ├── output_6709.json │ │ ├── output_6710.json │ │ ├── output_6711.json │ │ ├── output_6712.json │ │ ├── output_6713.json │ │ ├── output_6714.json │ │ ├── output_6715.json │ │ ├── output_6716.json │ │ ├── output_6717.json │ │ ├── output_6718.json │ │ ├── output_6719.json │ │ ├── output_6720.json │ │ ├── output_6721.json │ │ ├── output_6722.json │ │ ├── output_6723.json │ │ ├── output_6724.json │ │ ├── output_6725.json │ │ ├── output_6726.json │ │ ├── output_6727.json │ │ ├── output_6728.json │ │ ├── output_6729.json │ │ ├── output_6730.json │ │ ├── output_6731.json │ │ ├── output_6732.json │ │ ├── output_6733.json │ │ ├── output_6734.json │ │ ├── output_6735.json │ │ ├── output_6736.json │ │ ├── output_6737.json │ │ ├── output_6738.json │ │ ├── output_6739.json │ │ ├── output_6740.json │ │ ├── output_6741.json │ │ ├── output_6742.json │ │ ├── output_6743.json │ │ ├── output_6744.json │ │ ├── output_6745.json │ │ ├── output_6746.json │ │ ├── output_6747.json │ │ ├── output_6748.json │ │ ├── output_6749.json │ │ ├── output_6750.json │ │ ├── output_6751.json │ │ ├── output_6752.json │ │ ├── output_6753.json │ │ ├── output_6754.json │ │ ├── output_6755.json │ │ ├── output_6756.json │ │ ├── output_6757.json │ │ ├── output_6758.json │ │ ├── output_6759.json │ │ ├── output_6760.json │ │ ├── output_6761.json │ │ ├── output_6762.json │ │ ├── output_6763.json │ │ ├── output_6764.json │ │ ├── output_6765.json │ │ ├── output_6766.json │ │ ├── output_6767.json │ │ ├── output_6768.json │ │ ├── output_6769.json │ │ ├── output_6770.json │ │ ├── output_6771.json │ │ ├── output_6772.json │ │ ├── output_6773.json │ │ ├── output_6774.json │ │ ├── output_6775.json │ │ ├── output_6776.json │ │ ├── output_6777.json │ │ ├── output_6778.json │ │ ├── output_6779.json │ │ ├── output_6780.json │ │ ├── output_6781.json │ │ ├── output_6782.json │ │ ├── output_6783.json │ │ ├── output_6784.json │ │ ├── output_6785.json │ │ ├── output_6786.json │ │ ├── output_6787.json │ │ ├── output_6788.json │ │ ├── output_6789.json │ │ ├── output_6790.json │ │ ├── output_6791.json │ │ ├── output_6792.json │ │ ├── output_6793.json │ │ ├── output_6794.json │ │ ├── output_6795.json │ │ ├── output_6796.json │ │ ├── output_6797.json │ │ ├── output_6798.json │ │ ├── output_6799.json │ │ ├── output_6800.json │ │ ├── output_6801.json │ │ ├── output_6802.json │ │ ├── output_6803.json │ │ ├── output_6804.json │ │ ├── output_6805.json │ │ ├── output_6806.json │ │ ├── output_6807.json │ │ ├── output_6808.json │ │ ├── output_6809.json │ │ ├── output_6810.json │ │ ├── output_6811.json │ │ ├── output_6812.json │ │ ├── output_6813.json │ │ ├── output_6814.json │ │ ├── output_6815.json │ │ ├── output_6816.json │ │ ├── output_6817.json │ │ ├── output_6818.json │ │ ├── output_6819.json │ │ ├── output_6820.json │ │ ├── output_6821.json │ │ ├── output_6822.json │ │ ├── output_6823.json │ │ ├── output_6824.json │ │ ├── output_6825.json │ │ ├── output_6826.json │ │ ├── output_6827.json │ │ ├── output_6828.json │ │ ├── output_6829.json │ │ ├── output_6830.json │ │ ├── output_6831.json │ │ ├── output_6832.json │ │ ├── output_6833.json │ │ ├── output_6834.json │ │ ├── output_6835.json │ │ ├── output_6836.json │ │ ├── output_6837.json │ │ ├── output_6838.json │ │ ├── output_6839.json │ │ ├── output_6840.json │ │ ├── output_6841.json │ │ ├── output_6842.json │ │ ├── output_6843.json │ │ ├── output_6844.json │ │ ├── output_6845.json │ │ ├── output_6846.json │ │ ├── output_6847.json │ │ ├── output_6848.json │ │ ├── output_6849.json │ │ ├── output_6850.json │ │ ├── output_6851.json │ │ ├── output_6852.json │ │ ├── output_6853.json │ │ ├── output_6854.json │ │ ├── output_6855.json │ │ ├── output_6856.json │ │ ├── output_6857.json │ │ ├── output_6858.json │ │ ├── output_6859.json │ │ ├── output_6860.json │ │ ├── output_6861.json │ │ ├── output_6862.json │ │ ├── output_6863.json │ │ ├── output_6864.json │ │ ├── output_6865.json │ │ ├── output_6866.json │ │ ├── output_6867.json │ │ ├── output_6868.json │ │ ├── output_6869.json │ │ ├── output_6870.json │ │ ├── output_6871.json │ │ ├── output_6872.json │ │ ├── output_6873.json │ │ ├── output_6874.json │ │ ├── output_6875.json │ │ ├── output_6876.json │ │ ├── output_6877.json │ │ ├── output_6878.json │ │ ├── output_6879.json │ │ ├── output_6880.json │ │ ├── output_6881.json │ │ ├── output_6882.json │ │ ├── output_6883.json │ │ ├── output_6884.json │ │ ├── output_6885.json │ │ ├── output_6886.json │ │ ├── output_6887.json │ │ ├── output_6888.json │ │ ├── output_6889.json │ │ ├── output_6890.json │ │ ├── output_6891.json │ │ ├── output_6892.json │ │ ├── output_6893.json │ │ ├── output_6894.json │ │ ├── output_6895.json │ │ ├── output_6896.json │ │ ├── output_6897.json │ │ ├── output_6898.json │ │ ├── output_6899.json │ │ ├── output_6900.json │ │ ├── output_6901.json │ │ ├── output_6902.json │ │ ├── output_6903.json │ │ ├── output_6904.json │ │ ├── output_6905.json │ │ ├── output_6906.json │ │ ├── output_6907.json │ │ ├── output_6908.json │ │ ├── output_6909.json │ │ ├── output_6910.json │ │ ├── output_6911.json │ │ ├── output_6912.json │ │ ├── output_6913.json │ │ ├── output_6914.json │ │ ├── output_6915.json │ │ ├── output_6916.json │ │ ├── output_6917.json │ │ ├── output_6918.json │ │ ├── output_6919.json │ │ ├── output_6920.json │ │ ├── output_6921.json │ │ ├── output_6922.json │ │ ├── output_6923.json │ │ ├── output_6924.json │ │ ├── output_6925.json │ │ ├── output_6926.json │ │ ├── output_6927.json │ │ ├── output_6928.json │ │ ├── output_6929.json │ │ ├── output_6930.json │ │ ├── output_6931.json │ │ ├── output_6932.json │ │ ├── output_6933.json │ │ ├── output_6934.json │ │ ├── output_6935.json │ │ ├── output_6936.json │ │ ├── output_6937.json │ │ ├── output_6938.json │ │ ├── output_6939.json │ │ ├── output_6940.json │ │ ├── output_6941.json │ │ ├── output_6942.json │ │ ├── output_6943.json │ │ ├── output_6944.json │ │ ├── output_6945.json │ │ ├── output_6946.json │ │ ├── output_6947.json │ │ ├── output_6948.json │ │ ├── output_6949.json │ │ ├── output_6950.json │ │ ├── output_6951.json │ │ ├── output_6952.json │ │ ├── output_6953.json │ │ ├── output_6954.json │ │ ├── output_6955.json │ │ ├── output_6956.json │ │ ├── output_6957.json │ │ ├── output_6958.json │ │ ├── output_6959.json │ │ ├── output_6960.json │ │ ├── output_6961.json │ │ ├── output_6962.json │ │ ├── output_6963.json │ │ ├── output_6964.json │ │ ├── output_6965.json │ │ ├── output_6966.json │ │ ├── output_6967.json │ │ ├── output_6968.json │ │ ├── output_6969.json │ │ ├── output_6970.json │ │ ├── output_6971.json │ │ ├── output_6972.json │ │ ├── output_6973.json │ │ ├── output_6974.json │ │ ├── output_6975.json │ │ ├── output_6976.json │ │ ├── output_6977.json │ │ ├── output_6978.json │ │ ├── output_6979.json │ │ ├── output_6980.json │ │ ├── output_6981.json │ │ ├── output_6982.json │ │ ├── output_6983.json │ │ ├── output_6984.json │ │ ├── output_6985.json │ │ ├── output_6986.json │ │ ├── output_6987.json │ │ ├── output_6988.json │ │ ├── output_6989.json │ │ ├── output_6990.json │ │ ├── output_6991.json │ │ ├── output_6992.json │ │ ├── output_6993.json │ │ ├── output_6994.json │ │ ├── output_6995.json │ │ ├── output_6996.json │ │ ├── output_6997.json │ │ ├── output_6998.json │ │ ├── output_6999.json │ │ ├── output_7000.json │ │ ├── output_7001.json │ │ ├── output_7002.json │ │ ├── output_7003.json │ │ ├── output_7004.json │ │ ├── output_7005.json │ │ ├── output_7006.json │ │ ├── output_7007.json │ │ ├── output_7008.json │ │ ├── output_7009.json │ │ ├── output_7010.json │ │ ├── output_7011.json │ │ ├── output_7012.json │ │ ├── output_7013.json │ │ ├── output_7014.json │ │ ├── output_7015.json │ │ ├── output_7016.json │ │ ├── output_7017.json │ │ ├── output_7018.json │ │ ├── output_7019.json │ │ ├── output_7020.json │ │ ├── output_7021.json │ │ ├── output_7022.json │ │ ├── output_7023.json │ │ ├── output_7024.json │ │ ├── output_7025.json │ │ ├── output_7026.json │ │ ├── output_7027.json │ │ ├── output_7028.json │ │ ├── output_7029.json │ │ ├── output_7030.json │ │ ├── output_7031.json │ │ ├── output_7032.json │ │ ├── output_7033.json │ │ ├── output_7034.json │ │ ├── output_7035.json │ │ ├── output_7036.json │ │ ├── output_7037.json │ │ ├── output_7038.json │ │ ├── output_7039.json │ │ ├── output_7040.json │ │ ├── output_7041.json │ │ ├── output_7042.json │ │ ├── output_7043.json │ │ ├── output_7044.json │ │ ├── output_7045.json │ │ ├── output_7046.json │ │ ├── output_7047.json │ │ ├── output_7048.json │ │ ├── output_7049.json │ │ ├── output_7050.json │ │ ├── output_7051.json │ │ ├── output_7052.json │ │ ├── output_7053.json │ │ ├── output_7054.json │ │ ├── output_7055.json │ │ ├── output_7056.json │ │ ├── output_7057.json │ │ ├── output_7058.json │ │ ├── output_7059.json │ │ ├── output_7060.json │ │ ├── output_7061.json │ │ ├── output_7062.json │ │ ├── output_7063.json │ │ ├── output_7064.json │ │ ├── output_7065.json │ │ ├── output_7066.json │ │ ├── output_7067.json │ │ ├── output_7068.json │ │ ├── output_7069.json │ │ ├── output_7070.json │ │ ├── output_7071.json │ │ ├── output_7072.json │ │ ├── output_7073.json │ │ ├── output_7074.json │ │ ├── output_7075.json │ │ ├── output_7076.json │ │ ├── output_7077.json │ │ ├── output_7078.json │ │ ├── output_7079.json │ │ ├── output_7080.json │ │ ├── output_7081.json │ │ ├── output_7082.json │ │ ├── output_7083.json │ │ ├── output_7084.json │ │ ├── output_7085.json │ │ ├── output_7086.json │ │ ├── output_7087.json │ │ ├── output_7088.json │ │ ├── output_7089.json │ │ ├── output_7090.json │ │ ├── output_7091.json │ │ ├── output_7092.json │ │ ├── output_7093.json │ │ ├── output_7094.json │ │ ├── output_7095.json │ │ ├── output_7096.json │ │ ├── output_7097.json │ │ ├── output_7098.json │ │ ├── output_7099.json │ │ ├── output_7100.json │ │ ├── output_7101.json │ │ ├── output_7102.json │ │ ├── output_7103.json │ │ ├── output_7104.json │ │ ├── output_7105.json │ │ ├── output_7106.json │ │ ├── output_7107.json │ │ ├── output_7108.json │ │ ├── output_7109.json │ │ ├── output_7110.json │ │ ├── output_7111.json │ │ ├── output_7112.json │ │ ├── output_7113.json │ │ ├── output_7114.json │ │ ├── output_7115.json │ │ ├── output_7116.json │ │ ├── output_7117.json │ │ ├── output_7118.json │ │ ├── output_7119.json │ │ ├── output_7120.json │ │ ├── output_7121.json │ │ ├── output_7122.json │ │ ├── output_7123.json │ │ ├── output_7124.json │ │ ├── output_7125.json │ │ ├── output_7126.json │ │ ├── output_7127.json │ │ ├── output_7128.json │ │ ├── output_7129.json │ │ ├── output_7130.json │ │ ├── output_7131.json │ │ ├── output_7132.json │ │ ├── output_7133.json │ │ ├── output_7134.json │ │ ├── output_7135.json │ │ ├── output_7136.json │ │ ├── output_7137.json │ │ ├── output_7138.json │ │ ├── output_7139.json │ │ ├── output_7140.json │ │ ├── output_7141.json │ │ ├── output_7142.json │ │ ├── output_7143.json │ │ ├── output_7144.json │ │ ├── output_7145.json │ │ ├── output_7146.json │ │ ├── output_7147.json │ │ ├── output_7148.json │ │ ├── output_7149.json │ │ ├── output_7150.json │ │ ├── output_7151.json │ │ ├── output_7152.json │ │ ├── output_7153.json │ │ ├── output_7154.json │ │ ├── output_7155.json │ │ ├── output_7156.json │ │ ├── output_7157.json │ │ ├── output_7158.json │ │ ├── output_7159.json │ │ ├── output_7160.json │ │ ├── output_7161.json │ │ ├── output_7162.json │ │ ├── output_7163.json │ │ ├── output_7164.json │ │ ├── output_7165.json │ │ ├── output_7166.json │ │ ├── output_7167.json │ │ ├── output_7168.json │ │ ├── output_7169.json │ │ ├── output_7170.json │ │ ├── output_7171.json │ │ ├── output_7172.json │ │ ├── output_7173.json │ │ ├── output_7174.json │ │ ├── output_7175.json │ │ ├── output_7176.json │ │ ├── output_7177.json │ │ ├── output_7178.json │ │ ├── output_7179.json │ │ ├── output_7180.json │ │ ├── output_7181.json │ │ ├── output_7182.json │ │ ├── output_7183.json │ │ ├── output_7184.json │ │ ├── output_7185.json │ │ ├── output_7186.json │ │ ├── output_7187.json │ │ ├── output_7188.json │ │ ├── output_7189.json │ │ ├── output_7190.json │ │ ├── output_7191.json │ │ ├── output_7192.json │ │ ├── output_7193.json │ │ ├── output_7194.json │ │ ├── output_7195.json │ │ ├── output_7196.json │ │ ├── output_7197.json │ │ ├── output_7198.json │ │ ├── output_7199.json │ │ ├── output_7200.json │ │ ├── output_7201.json │ │ ├── output_7202.json │ │ ├── output_7203.json │ │ ├── output_7204.json │ │ ├── output_7205.json │ │ ├── output_7206.json │ │ ├── output_7207.json │ │ ├── output_7208.json │ │ ├── output_7209.json │ │ ├── output_7210.json │ │ ├── output_7211.json │ │ ├── output_7212.json │ │ ├── output_7213.json │ │ ├── output_7214.json │ │ ├── output_7215.json │ │ ├── output_7216.json │ │ ├── output_7217.json │ │ ├── output_7218.json │ │ ├── output_7219.json │ │ ├── output_7220.json │ │ ├── output_7221.json │ │ ├── output_7222.json │ │ ├── output_7223.json │ │ ├── output_7224.json │ │ ├── output_7225.json │ │ ├── output_7226.json │ │ ├── output_7227.json │ │ ├── output_7228.json │ │ ├── output_7229.json │ │ ├── output_7230.json │ │ ├── output_7231.json │ │ ├── output_7232.json │ │ ├── output_7233.json │ │ ├── output_7234.json │ │ ├── output_7235.json │ │ ├── output_7236.json │ │ ├── output_7237.json │ │ ├── output_7238.json │ │ ├── output_7239.json │ │ ├── output_7240.json │ │ ├── output_7241.json │ │ ├── output_7242.json │ │ ├── output_7243.json │ │ ├── output_7244.json │ │ ├── output_7245.json │ │ ├── output_7246.json │ │ ├── output_7247.json │ │ ├── output_7248.json │ │ ├── output_7249.json │ │ ├── output_7250.json │ │ ├── output_7251.json │ │ ├── output_7252.json │ │ ├── output_7253.json │ │ ├── output_7254.json │ │ ├── output_7255.json │ │ ├── output_7256.json │ │ ├── output_7257.json │ │ ├── output_7258.json │ │ ├── output_7259.json │ │ ├── output_7260.json │ │ ├── output_7261.json │ │ ├── output_7262.json │ │ ├── output_7263.json │ │ ├── output_7264.json │ │ ├── output_7265.json │ │ ├── output_7266.json │ │ ├── output_7267.json │ │ ├── output_7268.json │ │ ├── output_7269.json │ │ ├── output_7270.json │ │ ├── output_7271.json │ │ ├── output_7272.json │ │ ├── output_7273.json │ │ ├── output_7274.json │ │ ├── output_7275.json │ │ ├── output_7276.json │ │ ├── output_7277.json │ │ ├── output_7278.json │ │ ├── output_7279.json │ │ ├── output_7280.json │ │ ├── output_7281.json │ │ ├── output_7282.json │ │ ├── output_7283.json │ │ ├── output_7284.json │ │ ├── output_7285.json │ │ ├── output_7286.json │ │ ├── output_7287.json │ │ ├── output_7288.json │ │ ├── output_7289.json │ │ ├── output_7290.json │ │ ├── output_7291.json │ │ ├── output_7292.json │ │ ├── output_7293.json │ │ ├── output_7294.json │ │ ├── output_7295.json │ │ ├── output_7296.json │ │ ├── output_7297.json │ │ ├── output_7298.json │ │ ├── output_7299.json │ │ ├── output_7300.json │ │ ├── output_7301.json │ │ ├── output_7302.json │ │ ├── output_7303.json │ │ ├── output_7304.json │ │ ├── output_7305.json │ │ ├── output_7306.json │ │ ├── output_7307.json │ │ ├── output_7308.json │ │ ├── output_7309.json │ │ ├── output_7310.json │ │ ├── output_7311.json │ │ ├── output_7312.json │ │ ├── output_7313.json │ │ ├── output_7314.json │ │ ├── output_7315.json │ │ ├── output_7316.json │ │ ├── output_7317.json │ │ ├── output_7318.json │ │ ├── output_7319.json │ │ ├── output_7320.json │ │ ├── output_7321.json │ │ ├── output_7322.json │ │ ├── output_7323.json │ │ ├── output_7324.json │ │ ├── output_7325.json │ │ ├── output_7326.json │ │ ├── output_7327.json │ │ ├── output_7328.json │ │ ├── output_7329.json │ │ ├── output_7330.json │ │ ├── output_7331.json │ │ ├── output_7332.json │ │ ├── output_7333.json │ │ ├── output_7334.json │ │ ├── output_7335.json │ │ ├── output_7336.json │ │ ├── output_7337.json │ │ ├── output_7338.json │ │ ├── output_7339.json │ │ ├── output_7340.json │ │ ├── output_7341.json │ │ ├── output_7342.json │ │ ├── output_7343.json │ │ ├── output_7344.json │ │ ├── output_7345.json │ │ ├── output_7346.json │ │ ├── output_7347.json │ │ ├── output_7348.json │ │ ├── output_7349.json │ │ ├── output_7350.json │ │ ├── output_7351.json │ │ ├── output_7352.json │ │ ├── output_7353.json │ │ ├── output_7354.json │ │ ├── output_7355.json │ │ ├── output_7356.json │ │ ├── output_7357.json │ │ ├── output_7358.json │ │ ├── output_7359.json │ │ ├── output_7360.json │ │ ├── output_7361.json │ │ ├── output_7362.json │ │ ├── output_7363.json │ │ ├── output_7364.json │ │ ├── output_7365.json │ │ ├── output_7366.json │ │ ├── output_7367.json │ │ ├── output_7368.json │ │ ├── output_7369.json │ │ ├── output_7370.json │ │ ├── output_7371.json │ │ ├── output_7372.json │ │ ├── output_7373.json │ │ ├── output_7374.json │ │ ├── output_7375.json │ │ ├── output_7376.json │ │ ├── output_7377.json │ │ ├── output_7378.json │ │ ├── output_7379.json │ │ ├── output_7380.json │ │ ├── output_7381.json │ │ ├── output_7382.json │ │ ├── output_7383.json │ │ ├── output_7384.json │ │ ├── output_7385.json │ │ ├── output_7386.json │ │ ├── output_7387.json │ │ ├── output_7388.json │ │ ├── output_7389.json │ │ ├── output_7390.json │ │ ├── output_7391.json │ │ ├── output_7392.json │ │ ├── output_7393.json │ │ ├── output_7394.json │ │ ├── output_7395.json │ │ ├── output_7396.json │ │ ├── output_7397.json │ │ ├── output_7398.json │ │ ├── output_7399.json │ │ ├── output_7400.json │ │ ├── output_7401.json │ │ ├── output_7402.json │ │ ├── output_7403.json │ │ ├── output_7404.json │ │ ├── output_7405.json │ │ ├── output_7406.json │ │ ├── output_7407.json │ │ ├── output_7408.json │ │ ├── output_7409.json │ │ ├── output_7410.json │ │ ├── output_7411.json │ │ ├── output_7412.json │ │ ├── output_7413.json │ │ ├── output_7414.json │ │ ├── output_7415.json │ │ ├── output_7416.json │ │ ├── output_7417.json │ │ ├── output_7418.json │ │ ├── output_7419.json │ │ ├── output_7420.json │ │ ├── output_7421.json │ │ ├── output_7422.json │ │ ├── output_7423.json │ │ ├── output_7424.json │ │ ├── output_7425.json │ │ ├── output_7426.json │ │ ├── output_7427.json │ │ ├── output_7428.json │ │ ├── output_7429.json │ │ ├── output_7430.json │ │ ├── output_7431.json │ │ ├── output_7432.json │ │ ├── output_7433.json │ │ ├── output_7434.json │ │ ├── output_7435.json │ │ ├── output_7436.json │ │ ├── output_7437.json │ │ ├── output_7438.json │ │ ├── output_7439.json │ │ ├── output_7440.json │ │ ├── output_7441.json │ │ ├── output_7442.json │ │ ├── output_7443.json │ │ ├── output_7444.json │ │ ├── output_7445.json │ │ ├── output_7446.json │ │ ├── output_7447.json │ │ ├── output_7448.json │ │ ├── output_7449.json │ │ ├── output_7450.json │ │ ├── output_7451.json │ │ ├── output_7452.json │ │ ├── output_7453.json │ │ ├── output_7454.json │ │ ├── output_7455.json │ │ ├── output_7456.json │ │ ├── output_7457.json │ │ ├── output_7458.json │ │ ├── output_7459.json │ │ ├── output_7460.json │ │ ├── output_7461.json │ │ ├── output_7462.json │ │ ├── output_7463.json │ │ ├── output_7464.json │ │ ├── output_7465.json │ │ ├── output_7466.json │ │ ├── output_7467.json │ │ ├── output_7468.json │ │ ├── output_7469.json │ │ ├── output_7470.json │ │ ├── output_7471.json │ │ ├── output_7472.json │ │ ├── output_7473.json │ │ ├── output_7474.json │ │ ├── output_7475.json │ │ ├── output_7476.json │ │ ├── output_7477.json │ │ ├── output_7478.json │ │ ├── output_7479.json │ │ ├── output_7480.json │ │ ├── output_7481.json │ │ ├── output_7482.json │ │ ├── output_7483.json │ │ ├── output_7484.json │ │ ├── output_7485.json │ │ ├── output_7486.json │ │ ├── output_7487.json │ │ ├── output_7488.json │ │ ├── output_7489.json │ │ ├── output_7490.json │ │ ├── output_7491.json │ │ ├── output_7492.json │ │ ├── output_7493.json │ │ ├── output_7494.json │ │ ├── output_7495.json │ │ ├── output_7496.json │ │ ├── output_7497.json │ │ ├── output_7498.json │ │ ├── output_7499.json │ │ ├── output_7500.json │ │ ├── output_7501.json │ │ ├── output_7502.json │ │ ├── output_7503.json │ │ ├── output_7504.json │ │ ├── output_7505.json │ │ ├── output_7506.json │ │ ├── output_7507.json │ │ ├── output_7508.json │ │ ├── output_7509.json │ │ ├── output_7510.json │ │ ├── output_7511.json │ │ ├── output_7512.json │ │ ├── output_7513.json │ │ ├── output_7514.json │ │ ├── output_7515.json │ │ ├── output_7516.json │ │ ├── output_7517.json │ │ ├── output_7518.json │ │ ├── output_7519.json │ │ ├── output_7520.json │ │ ├── output_7521.json │ │ ├── output_7522.json │ │ ├── output_7523.json │ │ ├── output_7524.json │ │ ├── output_7525.json │ │ ├── output_7526.json │ │ ├── output_7527.json │ │ ├── output_7528.json │ │ ├── output_7529.json │ │ ├── output_7530.json │ │ ├── output_7531.json │ │ ├── output_7532.json │ │ ├── output_7533.json │ │ ├── output_7534.json │ │ ├── output_7535.json │ │ ├── output_7536.json │ │ ├── output_7537.json │ │ ├── output_7538.json │ │ ├── output_7539.json │ │ ├── output_7540.json │ │ ├── output_7541.json │ │ ├── output_7542.json │ │ ├── output_7543.json │ │ ├── output_7544.json │ │ ├── output_7545.json │ │ ├── output_7546.json │ │ ├── output_7547.json │ │ ├── output_7548.json │ │ ├── output_7549.json │ │ ├── output_7550.json │ │ ├── output_7551.json │ │ ├── output_7552.json │ │ ├── output_7553.json │ │ ├── output_7554.json │ │ ├── output_7555.json │ │ ├── output_7556.json │ │ ├── output_7557.json │ │ ├── output_7558.json │ │ ├── output_7559.json │ │ ├── output_7560.json │ │ ├── output_7561.json │ │ ├── output_7562.json │ │ ├── output_7563.json │ │ ├── output_7564.json │ │ ├── output_7565.json │ │ ├── output_7566.json │ │ ├── output_7567.json │ │ ├── output_7568.json │ │ ├── output_7569.json │ │ ├── output_7570.json │ │ ├── output_7571.json │ │ ├── output_7572.json │ │ ├── output_7573.json │ │ ├── output_7574.json │ │ ├── output_7575.json │ │ ├── output_7576.json │ │ ├── output_7577.json │ │ ├── output_7578.json │ │ ├── output_7579.json │ │ ├── output_7580.json │ │ ├── output_7581.json │ │ ├── output_7582.json │ │ ├── output_7583.json │ │ ├── output_7584.json │ │ ├── output_7585.json │ │ ├── output_7586.json │ │ ├── output_7587.json │ │ ├── output_7588.json │ │ ├── output_7589.json │ │ ├── output_7590.json │ │ ├── output_7591.json │ │ ├── output_7592.json │ │ ├── output_7593.json │ │ ├── output_7594.json │ │ ├── output_7595.json │ │ ├── output_7596.json │ │ ├── output_7597.json │ │ ├── output_7598.json │ │ ├── output_7599.json │ │ ├── output_7600.json │ │ ├── output_7601.json │ │ ├── output_7602.json │ │ ├── output_7603.json │ │ ├── output_7604.json │ │ ├── output_7605.json │ │ ├── output_7606.json │ │ ├── output_7607.json │ │ ├── output_7608.json │ │ ├── output_7609.json │ │ ├── output_7610.json │ │ ├── output_7611.json │ │ ├── output_7612.json │ │ ├── output_7613.json │ │ ├── output_7614.json │ │ ├── output_7615.json │ │ ├── output_7616.json │ │ ├── output_7617.json │ │ ├── output_7618.json │ │ ├── output_7619.json │ │ ├── output_7620.json │ │ ├── output_7621.json │ │ ├── output_7622.json │ │ ├── output_7623.json │ │ ├── output_7624.json │ │ ├── output_7625.json │ │ ├── output_7626.json │ │ ├── output_7627.json │ │ ├── output_7628.json │ │ ├── output_7629.json │ │ ├── output_7630.json │ │ ├── output_7631.json │ │ ├── output_7632.json │ │ ├── output_7633.json │ │ ├── output_7634.json │ │ ├── output_7635.json │ │ ├── output_7636.json │ │ ├── output_7637.json │ │ ├── output_7638.json │ │ ├── output_7639.json │ │ ├── output_7640.json │ │ ├── output_7641.json │ │ ├── output_7642.json │ │ ├── output_7643.json │ │ ├── output_7644.json │ │ ├── output_7645.json │ │ ├── output_7646.json │ │ ├── output_7647.json │ │ ├── output_7648.json │ │ ├── output_7649.json │ │ ├── output_7650.json │ │ ├── output_7651.json │ │ ├── output_7652.json │ │ ├── output_7653.json │ │ ├── output_7654.json │ │ ├── output_7655.json │ │ ├── output_7656.json │ │ ├── output_7657.json │ │ ├── output_7658.json │ │ ├── output_7659.json │ │ ├── output_7660.json │ │ ├── output_7661.json │ │ ├── output_7662.json │ │ ├── output_7663.json │ │ ├── output_7664.json │ │ ├── output_7665.json │ │ ├── output_7666.json │ │ ├── output_7667.json │ │ ├── output_7668.json │ │ ├── output_7669.json │ │ ├── output_7670.json │ │ ├── output_7671.json │ │ ├── output_7672.json │ │ ├── output_7673.json │ │ ├── output_7674.json │ │ ├── output_7675.json │ │ ├── output_7676.json │ │ ├── output_7677.json │ │ ├── output_7678.json │ │ ├── output_7679.json │ │ ├── output_7680.json │ │ ├── output_7681.json │ │ ├── output_7682.json │ │ ├── output_7683.json │ │ ├── output_7684.json │ │ ├── output_7685.json │ │ ├── output_7686.json │ │ ├── output_7687.json │ │ ├── output_7688.json │ │ ├── output_7689.json │ │ ├── output_7690.json │ │ ├── output_7691.json │ │ ├── output_7692.json │ │ ├── output_7693.json │ │ ├── output_7694.json │ │ ├── output_7695.json │ │ ├── output_7696.json │ │ ├── output_7697.json │ │ ├── output_7698.json │ │ ├── output_7699.json │ │ ├── output_7700.json │ │ ├── output_7701.json │ │ ├── output_7702.json │ │ ├── output_7703.json │ │ ├── output_7704.json │ │ ├── output_7705.json │ │ ├── output_7706.json │ │ ├── output_7707.json │ │ ├── output_7708.json │ │ ├── output_7709.json │ │ ├── output_7710.json │ │ ├── output_7711.json │ │ ├── output_7712.json │ │ ├── output_7713.json │ │ ├── output_7714.json │ │ ├── output_7715.json │ │ ├── output_7716.json │ │ ├── output_7717.json │ │ ├── output_7718.json │ │ ├── output_7719.json │ │ ├── output_7720.json │ │ ├── output_7721.json │ │ ├── output_7722.json │ │ ├── output_7723.json │ │ ├── output_7724.json │ │ ├── output_7725.json │ │ ├── output_7726.json │ │ ├── output_7727.json │ │ ├── output_7728.json │ │ ├── output_7729.json │ │ ├── output_7730.json │ │ ├── output_7731.json │ │ ├── output_7732.json │ │ ├── output_7733.json │ │ ├── output_7734.json │ │ ├── output_7735.json │ │ ├── output_7736.json │ │ ├── output_7737.json │ │ ├── output_7738.json │ │ ├── output_7739.json │ │ ├── output_7740.json │ │ ├── output_7741.json │ │ ├── output_7742.json │ │ ├── output_7743.json │ │ ├── output_7744.json │ │ ├── output_7745.json │ │ ├── output_7746.json │ │ ├── output_7747.json │ │ ├── output_7748.json │ │ ├── output_7749.json │ │ ├── output_7750.json │ │ ├── output_7751.json │ │ ├── output_7752.json │ │ ├── output_7753.json │ │ ├── output_7754.json │ │ ├── output_7755.json │ │ ├── output_7756.json │ │ ├── output_7757.json │ │ ├── output_7758.json │ │ ├── output_7759.json │ │ ├── output_7760.json │ │ ├── output_7761.json │ │ ├── output_7762.json │ │ ├── output_7763.json │ │ ├── output_7764.json │ │ ├── output_7765.json │ │ ├── output_7766.json │ │ ├── output_7767.json │ │ ├── output_7768.json │ │ ├── output_7769.json │ │ ├── output_7770.json │ │ ├── output_7771.json │ │ ├── output_7772.json │ │ ├── output_7773.json │ │ ├── output_7774.json │ │ ├── output_7775.json │ │ ├── output_7776.json │ │ ├── output_7777.json │ │ ├── output_7778.json │ │ ├── output_7779.json │ │ ├── output_7780.json │ │ ├── output_7781.json │ │ ├── output_7782.json │ │ ├── output_7783.json │ │ ├── output_7784.json │ │ ├── output_7785.json │ │ ├── output_7786.json │ │ ├── output_7787.json │ │ ├── output_7788.json │ │ ├── output_7789.json │ │ ├── output_7790.json │ │ ├── output_7791.json │ │ ├── output_7792.json │ │ ├── output_7793.json │ │ ├── output_7794.json │ │ ├── output_7795.json │ │ ├── output_7796.json │ │ ├── output_7797.json │ │ ├── output_7798.json │ │ ├── output_7799.json │ │ ├── output_7800.json │ │ ├── output_7801.json │ │ ├── output_7802.json │ │ ├── output_7803.json │ │ ├── output_7804.json │ │ ├── output_7805.json │ │ ├── output_7806.json │ │ ├── output_7807.json │ │ ├── output_7808.json │ │ ├── output_7809.json │ │ ├── output_7810.json │ │ ├── output_7811.json │ │ ├── output_7812.json │ │ ├── output_7813.json │ │ ├── output_7814.json │ │ ├── output_7815.json │ │ ├── output_7816.json │ │ ├── output_7817.json │ │ ├── output_7818.json │ │ ├── output_7819.json │ │ ├── output_7820.json │ │ ├── output_7821.json │ │ ├── output_7822.json │ │ ├── output_7823.json │ │ ├── output_7824.json │ │ ├── output_7825.json │ │ ├── output_7826.json │ │ ├── output_7827.json │ │ ├── output_7828.json │ │ ├── output_7829.json │ │ ├── output_7830.json │ │ ├── output_7831.json │ │ ├── output_7832.json │ │ ├── output_7833.json │ │ ├── output_7834.json │ │ ├── output_7835.json │ │ ├── output_7836.json │ │ ├── output_7837.json │ │ ├── output_7838.json │ │ ├── output_7839.json │ │ ├── output_7840.json │ │ ├── output_7841.json │ │ ├── output_7842.json │ │ ├── output_7843.json │ │ ├── output_7844.json │ │ ├── output_7845.json │ │ ├── output_7846.json │ │ ├── output_7847.json │ │ ├── output_7848.json │ │ ├── output_7849.json │ │ ├── output_7850.json │ │ ├── output_7851.json │ │ ├── output_7852.json │ │ ├── output_7853.json │ │ ├── output_7854.json │ │ ├── output_7855.json │ │ ├── output_7856.json │ │ ├── output_7857.json │ │ ├── output_7858.json │ │ ├── output_7859.json │ │ ├── output_7860.json │ │ ├── output_7861.json │ │ ├── output_7862.json │ │ ├── output_7863.json │ │ ├── output_7864.json │ │ ├── output_7865.json │ │ ├── output_7866.json │ │ ├── output_7867.json │ │ ├── output_7868.json │ │ ├── output_7869.json │ │ ├── output_7870.json │ │ ├── output_7871.json │ │ ├── output_7872.json │ │ ├── output_7873.json │ │ ├── output_7874.json │ │ ├── output_7875.json │ │ ├── output_7876.json │ │ ├── output_7877.json │ │ ├── output_7878.json │ │ ├── output_7879.json │ │ ├── output_7880.json │ │ ├── output_7881.json │ │ ├── output_7882.json │ │ ├── output_7883.json │ │ ├── output_7884.json │ │ ├── output_7885.json │ │ ├── output_7886.json │ │ ├── output_7887.json │ │ ├── output_7888.json │ │ ├── output_7889.json │ │ ├── output_7890.json │ │ ├── output_7891.json │ │ ├── output_7892.json │ │ ├── output_7893.json │ │ ├── output_7894.json │ │ ├── output_7895.json │ │ ├── output_7896.json │ │ ├── output_7897.json │ │ ├── output_7898.json │ │ ├── output_7899.json │ │ ├── output_7900.json │ │ ├── output_7901.json │ │ ├── output_7902.json │ │ ├── output_7903.json │ │ ├── output_7904.json │ │ ├── output_7905.json │ │ ├── output_7906.json │ │ ├── output_7907.json │ │ ├── output_7908.json │ │ ├── output_7909.json │ │ ├── output_7910.json │ │ ├── output_7911.json │ │ ├── output_7912.json │ │ ├── output_7913.json │ │ ├── output_7914.json │ │ ├── output_7915.json │ │ ├── output_7916.json │ │ ├── output_7917.json │ │ ├── output_7918.json │ │ ├── output_7919.json │ │ ├── output_7920.json │ │ ├── output_7921.json │ │ ├── output_7922.json │ │ ├── output_7923.json │ │ ├── output_7924.json │ │ ├── output_7925.json │ │ ├── output_7926.json │ │ ├── output_7927.json │ │ ├── output_7928.json │ │ ├── output_7929.json │ │ ├── output_7930.json │ │ ├── output_7931.json │ │ ├── output_7932.json │ │ ├── output_7933.json │ │ ├── output_7934.json │ │ ├── output_7935.json │ │ ├── output_7936.json │ │ ├── output_7937.json │ │ ├── output_7938.json │ │ ├── output_7939.json │ │ ├── output_7940.json │ │ ├── output_7941.json │ │ ├── output_7942.json │ │ ├── output_7943.json │ │ ├── output_7944.json │ │ ├── output_7945.json │ │ ├── output_7946.json │ │ ├── output_7947.json │ │ ├── output_7948.json │ │ ├── output_7949.json │ │ ├── output_7950.json │ │ ├── output_7951.json │ │ ├── output_7952.json │ │ ├── output_7953.json │ │ ├── output_7954.json │ │ ├── output_7955.json │ │ ├── output_7956.json │ │ ├── output_7957.json │ │ ├── output_7958.json │ │ ├── output_7959.json │ │ ├── output_7960.json │ │ ├── output_7961.json │ │ ├── output_7962.json │ │ ├── output_7963.json │ │ ├── output_7964.json │ │ ├── output_7965.json │ │ ├── output_7966.json │ │ ├── output_7967.json │ │ ├── output_7968.json │ │ ├── output_7969.json │ │ ├── output_7970.json │ │ ├── output_7971.json │ │ ├── output_7972.json │ │ ├── output_7973.json │ │ ├── output_7974.json │ │ ├── output_7975.json │ │ ├── output_7976.json │ │ ├── output_7977.json │ │ ├── output_7978.json │ │ ├── output_7979.json │ │ ├── output_7980.json │ │ ├── output_7981.json │ │ ├── output_7982.json │ │ ├── output_7983.json │ │ ├── output_7984.json │ │ ├── output_7985.json │ │ ├── output_7986.json │ │ ├── output_7987.json │ │ ├── output_7988.json │ │ ├── output_7989.json │ │ ├── output_7990.json │ │ ├── output_7991.json │ │ ├── output_7992.json │ │ ├── output_7993.json │ │ ├── output_7994.json │ │ ├── output_7995.json │ │ ├── output_7996.json │ │ ├── output_7997.json │ │ ├── output_7998.json │ │ ├── output_7999.json │ │ ├── output_8000.json │ │ ├── output_8001.json │ │ ├── output_8002.json │ │ ├── output_8003.json │ │ ├── output_8004.json │ │ ├── output_8005.json │ │ ├── output_8006.json │ │ ├── output_8007.json │ │ ├── output_8008.json │ │ ├── output_8009.json │ │ ├── output_8010.json │ │ ├── output_8011.json │ │ ├── output_8012.json │ │ ├── output_8013.json │ │ ├── output_8014.json │ │ ├── output_8015.json │ │ ├── output_8016.json │ │ ├── output_8017.json │ │ ├── output_8018.json │ │ ├── output_8019.json │ │ ├── output_8020.json │ │ ├── output_8021.json │ │ ├── output_8022.json │ │ ├── output_8023.json │ │ ├── output_8024.json │ │ ├── output_8025.json │ │ ├── output_8026.json │ │ ├── output_8027.json │ │ ├── output_8028.json │ │ ├── output_8029.json │ │ ├── output_8030.json │ │ ├── output_8031.json │ │ ├── output_8032.json │ │ ├── output_8033.json │ │ ├── output_8034.json │ │ ├── output_8035.json │ │ ├── output_8036.json │ │ ├── output_8037.json │ │ ├── output_8038.json │ │ ├── output_8039.json │ │ ├── output_8040.json │ │ ├── output_8041.json │ │ ├── output_8042.json │ │ ├── output_8043.json │ │ ├── output_8044.json │ │ ├── output_8045.json │ │ ├── output_8046.json │ │ ├── output_8047.json │ │ ├── output_8048.json │ │ ├── output_8049.json │ │ ├── output_8050.json │ │ ├── output_8051.json │ │ ├── output_8052.json │ │ ├── output_8053.json │ │ ├── output_8054.json │ │ ├── output_8055.json │ │ ├── output_8056.json │ │ ├── output_8057.json │ │ ├── output_8058.json │ │ ├── output_8059.json │ │ ├── output_8060.json │ │ ├── output_8061.json │ │ ├── output_8062.json │ │ ├── output_8063.json │ │ ├── output_8064.json │ │ ├── output_8065.json │ │ ├── output_8066.json │ │ ├── output_8067.json │ │ ├── output_8068.json │ │ ├── output_8069.json │ │ ├── output_8070.json │ │ ├── output_8071.json │ │ ├── output_8072.json │ │ ├── output_8073.json │ │ ├── output_8074.json │ │ ├── output_8075.json │ │ ├── output_8076.json │ │ ├── output_8077.json │ │ ├── output_8078.json │ │ ├── output_8079.json │ │ ├── output_8080.json │ │ ├── output_8081.json │ │ ├── output_8082.json │ │ ├── output_8083.json │ │ ├── output_8084.json │ │ ├── output_8085.json │ │ ├── output_8086.json │ │ ├── output_8087.json │ │ ├── output_8088.json │ │ ├── output_8089.json │ │ ├── output_8090.json │ │ ├── output_8091.json │ │ ├── output_8092.json │ │ ├── output_8093.json │ │ ├── output_8094.json │ │ ├── output_8095.json │ │ ├── output_8096.json │ │ ├── output_8097.json │ │ ├── output_8098.json │ │ ├── output_8099.json │ │ ├── output_8100.json │ │ ├── output_8101.json │ │ ├── output_8102.json │ │ ├── output_8103.json │ │ ├── output_8104.json │ │ ├── output_8105.json │ │ ├── output_8106.json │ │ ├── output_8107.json │ │ ├── output_8108.json │ │ ├── output_8109.json │ │ ├── output_8110.json │ │ ├── output_8111.json │ │ ├── output_8112.json │ │ ├── output_8113.json │ │ ├── output_8114.json │ │ ├── output_8115.json │ │ ├── output_8116.json │ │ ├── output_8117.json │ │ ├── output_8118.json │ │ ├── output_8119.json │ │ ├── output_8120.json │ │ ├── output_8121.json │ │ ├── output_8122.json │ │ ├── output_8123.json │ │ ├── output_8124.json │ │ ├── output_8125.json │ │ ├── output_8126.json │ │ ├── output_8127.json │ │ ├── output_8128.json │ │ ├── output_8129.json │ │ ├── output_8130.json │ │ ├── output_8131.json │ │ ├── output_8132.json │ │ ├── output_8133.json │ │ ├── output_8134.json │ │ ├── output_8135.json │ │ ├── output_8136.json │ │ ├── output_8137.json │ │ ├── output_8138.json │ │ ├── output_8139.json │ │ ├── output_8140.json │ │ ├── output_8141.json │ │ ├── output_8142.json │ │ ├── output_8143.json │ │ ├── output_8144.json │ │ ├── output_8145.json │ │ ├── output_8146.json │ │ ├── output_8147.json │ │ ├── output_8148.json │ │ ├── output_8149.json │ │ ├── output_8150.json │ │ ├── output_8151.json │ │ ├── output_8152.json │ │ ├── output_8153.json │ │ ├── output_8154.json │ │ ├── output_8155.json │ │ ├── output_8156.json │ │ ├── output_8157.json │ │ ├── output_8158.json │ │ ├── output_8159.json │ │ ├── output_8160.json │ │ ├── output_8161.json │ │ ├── output_8162.json │ │ ├── output_8163.json │ │ ├── output_8164.json │ │ ├── output_8165.json │ │ ├── output_8166.json │ │ ├── output_8167.json │ │ ├── output_8168.json │ │ ├── output_8169.json │ │ ├── output_8170.json │ │ ├── output_8171.json │ │ ├── output_8172.json │ │ ├── output_8173.json │ │ ├── output_8174.json │ │ ├── output_8175.json │ │ ├── output_8176.json │ │ ├── output_8177.json │ │ ├── output_8178.json │ │ ├── output_8179.json │ │ ├── output_8180.json │ │ ├── output_8181.json │ │ ├── output_8182.json │ │ ├── output_8183.json │ │ ├── output_8184.json │ │ ├── output_8185.json │ │ ├── output_8186.json │ │ ├── output_8187.json │ │ ├── output_8188.json │ │ ├── output_8189.json │ │ ├── output_8190.json │ │ ├── output_8191.json │ │ ├── output_8192.json │ │ ├── output_8193.json │ │ ├── output_8194.json │ │ ├── output_8195.json │ │ ├── output_8196.json │ │ ├── output_8197.json │ │ ├── output_8198.json │ │ ├── output_8199.json │ │ ├── output_8200.json │ │ ├── output_8201.json │ │ ├── output_8202.json │ │ ├── output_8203.json │ │ ├── output_8204.json │ │ ├── output_8205.json │ │ ├── output_8206.json │ │ ├── output_8207.json │ │ ├── output_8208.json │ │ ├── output_8209.json │ │ ├── output_8210.json │ │ ├── output_8211.json │ │ ├── output_8212.json │ │ ├── output_8213.json │ │ ├── output_8214.json │ │ ├── output_8215.json │ │ ├── output_8216.json │ │ ├── output_8217.json │ │ ├── output_8218.json │ │ ├── output_8219.json │ │ ├── output_8220.json │ │ ├── output_8221.json │ │ ├── output_8222.json │ │ ├── output_8223.json │ │ ├── output_8224.json │ │ ├── output_8225.json │ │ ├── output_8226.json │ │ ├── output_8227.json │ │ ├── output_8228.json │ │ ├── output_8229.json │ │ ├── output_8230.json │ │ ├── output_8231.json │ │ ├── output_8232.json │ │ ├── output_8233.json │ │ ├── output_8234.json │ │ ├── output_8235.json │ │ ├── output_8236.json │ │ ├── output_8237.json │ │ ├── output_8238.json │ │ ├── output_8239.json │ │ ├── output_8240.json │ │ ├── output_8241.json │ │ ├── output_8242.json │ │ ├── output_8243.json │ │ ├── output_8244.json │ │ ├── output_8245.json │ │ ├── output_8246.json │ │ ├── output_8247.json │ │ ├── output_8248.json │ │ ├── output_8249.json │ │ ├── output_8250.json │ │ ├── output_8251.json │ │ ├── output_8252.json │ │ ├── output_8253.json │ │ ├── output_8254.json │ │ ├── output_8255.json │ │ ├── output_8256.json │ │ ├── output_8257.json │ │ ├── output_8258.json │ │ ├── output_8259.json │ │ ├── output_8260.json │ │ ├── output_8261.json │ │ ├── output_8262.json │ │ ├── output_8263.json │ │ ├── output_8264.json │ │ ├── output_8265.json │ │ ├── output_8266.json │ │ ├── output_8267.json │ │ ├── output_8268.json │ │ ├── output_8269.json │ │ ├── output_8270.json │ │ ├── output_8271.json │ │ ├── output_8272.json │ │ ├── output_8273.json │ │ ├── output_8274.json │ │ ├── output_8275.json │ │ ├── output_8276.json │ │ ├── output_8277.json │ │ ├── output_8278.json │ │ ├── output_8279.json │ │ ├── output_8280.json │ │ ├── output_8281.json │ │ ├── output_8282.json │ │ ├── output_8283.json │ │ ├── output_8284.json │ │ ├── output_8285.json │ │ ├── output_8286.json │ │ ├── output_8287.json │ │ ├── output_8288.json │ │ ├── output_8289.json │ │ ├── output_8290.json │ │ ├── output_8291.json │ │ ├── output_8292.json │ │ ├── output_8293.json │ │ ├── output_8294.json │ │ ├── output_8295.json │ │ ├── output_8296.json │ │ ├── output_8297.json │ │ ├── output_8298.json │ │ ├── output_8299.json │ │ ├── output_8300.json │ │ ├── output_8301.json │ │ ├── output_8302.json │ │ ├── output_8303.json │ │ ├── output_8304.json │ │ ├── output_8305.json │ │ ├── output_8306.json │ │ ├── output_8307.json │ │ ├── output_8308.json │ │ ├── output_8309.json │ │ ├── output_8310.json │ │ ├── output_8311.json │ │ ├── output_8312.json │ │ ├── output_8313.json │ │ ├── output_8314.json │ │ ├── output_8315.json │ │ ├── output_8316.json │ │ ├── output_8317.json │ │ ├── output_8318.json │ │ ├── output_8319.json │ │ ├── output_8320.json │ │ ├── output_8321.json │ │ ├── output_8322.json │ │ ├── output_8323.json │ │ ├── output_8324.json │ │ ├── output_8325.json │ │ ├── output_8326.json │ │ ├── output_8327.json │ │ ├── output_8328.json │ │ ├── output_8329.json │ │ ├── output_8330.json │ │ ├── output_8331.json │ │ ├── output_8332.json │ │ ├── output_8333.json │ │ ├── output_8334.json │ │ ├── output_8335.json │ │ ├── output_8336.json │ │ ├── output_8337.json │ │ ├── output_8338.json │ │ ├── output_8339.json │ │ ├── output_8340.json │ │ ├── output_8341.json │ │ ├── output_8342.json │ │ ├── output_8343.json │ │ ├── output_8344.json │ │ ├── output_8345.json │ │ ├── output_8346.json │ │ ├── output_8347.json │ │ ├── output_8348.json │ │ ├── output_8349.json │ │ ├── output_8350.json │ │ ├── output_8351.json │ │ ├── output_8352.json │ │ ├── output_8353.json │ │ ├── output_8354.json │ │ ├── output_8355.json │ │ ├── output_8356.json │ │ ├── output_8357.json │ │ ├── output_8358.json │ │ ├── output_8359.json │ │ ├── output_8360.json │ │ ├── output_8361.json │ │ ├── output_8362.json │ │ ├── output_8363.json │ │ ├── output_8364.json │ │ ├── output_8365.json │ │ ├── output_8366.json │ │ ├── output_8367.json │ │ ├── output_8368.json │ │ ├── output_8369.json │ │ ├── output_8370.json │ │ ├── output_8371.json │ │ ├── output_8372.json │ │ ├── output_8373.json │ │ ├── output_8374.json │ │ ├── output_8375.json │ │ ├── output_8376.json │ │ ├── output_8377.json │ │ ├── output_8378.json │ │ ├── output_8379.json │ │ ├── output_8380.json │ │ ├── output_8381.json │ │ ├── output_8382.json │ │ ├── output_8383.json │ │ ├── output_8384.json │ │ ├── output_8385.json │ │ ├── output_8386.json │ │ ├── output_8387.json │ │ ├── output_8388.json │ │ ├── output_8389.json │ │ ├── output_8390.json │ │ ├── output_8391.json │ │ ├── output_8392.json │ │ ├── output_8393.json │ │ ├── output_8394.json │ │ ├── output_8395.json │ │ ├── output_8396.json │ │ ├── output_8397.json │ │ ├── output_8398.json │ │ ├── output_8399.json │ │ ├── output_8400.json │ │ ├── output_8401.json │ │ ├── output_8402.json │ │ ├── output_8403.json │ │ ├── output_8404.json │ │ ├── output_8405.json │ │ ├── output_8406.json │ │ ├── output_8407.json │ │ ├── output_8408.json │ │ ├── output_8409.json │ │ ├── output_8410.json │ │ ├── output_8411.json │ │ ├── output_8412.json │ │ ├── output_8413.json │ │ ├── output_8414.json │ │ ├── output_8415.json │ │ ├── output_8416.json │ │ ├── output_8417.json │ │ ├── output_8418.json │ │ ├── output_8419.json │ │ ├── output_8420.json │ │ ├── output_8421.json │ │ ├── output_8422.json │ │ ├── output_8423.json │ │ ├── output_8424.json │ │ ├── output_8425.json │ │ ├── output_8426.json │ │ ├── output_8427.json │ │ ├── output_8428.json │ │ ├── output_8429.json │ │ ├── output_8430.json │ │ ├── output_8431.json │ │ ├── output_8432.json │ │ ├── output_8433.json │ │ ├── output_8434.json │ │ ├── output_8435.json │ │ ├── output_8436.json │ │ ├── output_8437.json │ │ ├── output_8438.json │ │ ├── output_8439.json │ │ ├── output_8440.json │ │ ├── output_8441.json │ │ ├── output_8442.json │ │ ├── output_8443.json │ │ ├── output_8444.json │ │ ├── output_8445.json │ │ ├── output_8446.json │ │ ├── output_8447.json │ │ ├── output_8448.json │ │ ├── output_8449.json │ │ ├── output_8450.json │ │ ├── output_8451.json │ │ ├── output_8452.json │ │ ├── output_8453.json │ │ ├── output_8454.json │ │ ├── output_8455.json │ │ ├── output_8456.json │ │ ├── output_8457.json │ │ ├── output_8458.json │ │ ├── output_8459.json │ │ ├── output_8460.json │ │ ├── output_8461.json │ │ ├── output_8462.json │ │ ├── output_8463.json │ │ ├── output_8464.json │ │ ├── output_8465.json │ │ ├── output_8466.json │ │ ├── output_8467.json │ │ ├── output_8468.json │ │ ├── output_8469.json │ │ ├── output_8470.json │ │ ├── output_8471.json │ │ ├── output_8472.json │ │ ├── output_8473.json │ │ ├── output_8474.json │ │ ├── output_8475.json │ │ ├── output_8476.json │ │ ├── output_8477.json │ │ ├── output_8478.json │ │ ├── output_8479.json │ │ ├── output_8480.json │ │ ├── output_8481.json │ │ ├── output_8482.json │ │ ├── output_8483.json │ │ ├── output_8484.json │ │ ├── output_8485.json │ │ ├── output_8486.json │ │ ├── output_8487.json │ │ ├── output_8488.json │ │ ├── output_8489.json │ │ ├── output_8490.json │ │ ├── output_8491.json │ │ ├── output_8492.json │ │ ├── output_8493.json │ │ ├── output_8494.json │ │ ├── output_8495.json │ │ ├── output_8496.json │ │ ├── output_8497.json │ │ ├── output_8498.json │ │ ├── output_8499.json │ │ ├── output_8500.json │ │ ├── output_8501.json │ │ ├── output_8502.json │ │ ├── output_8503.json │ │ ├── output_8504.json │ │ ├── output_8505.json │ │ ├── output_8506.json │ │ ├── output_8507.json │ │ ├── output_8508.json │ │ ├── output_8509.json │ │ ├── output_8510.json │ │ ├── output_8511.json │ │ ├── output_8512.json │ │ ├── output_8513.json │ │ ├── output_8514.json │ │ ├── output_8515.json │ │ ├── output_8516.json │ │ ├── output_8517.json │ │ ├── output_8518.json │ │ ├── output_8519.json │ │ ├── output_8520.json │ │ ├── output_8521.json │ │ ├── output_8522.json │ │ ├── output_8523.json │ │ ├── output_8524.json │ │ ├── output_8525.json │ │ ├── output_8526.json │ │ ├── output_8527.json │ │ ├── output_8528.json │ │ ├── output_8529.json │ │ ├── output_8530.json │ │ ├── output_8531.json │ │ ├── output_8532.json │ │ ├── output_8533.json │ │ ├── output_8534.json │ │ ├── output_8535.json │ │ ├── output_8536.json │ │ ├── output_8537.json │ │ ├── output_8538.json │ │ ├── output_8539.json │ │ ├── output_8540.json │ │ ├── output_8541.json │ │ ├── output_8542.json │ │ ├── output_8543.json │ │ ├── output_8544.json │ │ ├── output_8545.json │ │ ├── output_8546.json │ │ ├── output_8547.json │ │ ├── output_8548.json │ │ ├── output_8549.json │ │ ├── output_8550.json │ │ ├── output_8551.json │ │ ├── output_8552.json │ │ ├── output_8553.json │ │ ├── output_8554.json │ │ ├── output_8555.json │ │ ├── output_8556.json │ │ ├── output_8557.json │ │ ├── output_8558.json │ │ ├── output_8559.json │ │ ├── output_8560.json │ │ ├── output_8561.json │ │ ├── output_8562.json │ │ ├── output_8563.json │ │ ├── output_8564.json │ │ ├── output_8565.json │ │ ├── output_8566.json │ │ ├── output_8567.json │ │ ├── output_8568.json │ │ ├── output_8569.json │ │ ├── output_8570.json │ │ ├── output_8571.json │ │ ├── output_8572.json │ │ ├── output_8573.json │ │ ├── output_8574.json │ │ ├── output_8575.json │ │ ├── output_8576.json │ │ ├── output_8577.json │ │ ├── output_8578.json │ │ ├── output_8579.json │ │ ├── output_8580.json │ │ ├── output_8581.json │ │ ├── output_8582.json │ │ ├── output_8583.json │ │ ├── output_8584.json │ │ ├── output_8585.json │ │ ├── output_8586.json │ │ ├── output_8587.json │ │ ├── output_8588.json │ │ ├── output_8589.json │ │ ├── output_8590.json │ │ ├── output_8591.json │ │ ├── output_8592.json │ │ ├── output_8593.json │ │ ├── output_8594.json │ │ ├── output_8595.json │ │ ├── output_8596.json │ │ ├── output_8597.json │ │ ├── output_8598.json │ │ ├── output_8599.json │ │ ├── output_8600.json │ │ ├── output_8601.json │ │ ├── output_8602.json │ │ ├── output_8603.json │ │ ├── output_8604.json │ │ ├── output_8605.json │ │ ├── output_8606.json │ │ ├── output_8607.json │ │ ├── output_8608.json │ │ ├── output_8609.json │ │ ├── output_8610.json │ │ ├── output_8611.json │ │ ├── output_8612.json │ │ ├── output_8613.json │ │ ├── output_8614.json │ │ ├── output_8615.json │ │ ├── output_8616.json │ │ ├── output_8617.json │ │ ├── output_8618.json │ │ ├── output_8619.json │ │ ├── output_8620.json │ │ ├── output_8621.json │ │ ├── output_8622.json │ │ ├── output_8623.json │ │ ├── output_8624.json │ │ ├── output_8625.json │ │ ├── output_8626.json │ │ ├── output_8627.json │ │ ├── output_8628.json │ │ ├── output_8629.json │ │ ├── output_8630.json │ │ ├── output_8631.json │ │ ├── output_8632.json │ │ ├── output_8633.json │ │ ├── output_8634.json │ │ ├── output_8635.json │ │ ├── output_8636.json │ │ ├── output_8637.json │ │ ├── output_8638.json │ │ ├── output_8639.json │ │ ├── output_8640.json │ │ ├── output_8641.json │ │ ├── output_8642.json │ │ ├── output_8643.json │ │ ├── output_8644.json │ │ ├── output_8645.json │ │ ├── output_8646.json │ │ ├── output_8647.json │ │ ├── output_8648.json │ │ ├── output_8649.json │ │ ├── output_8650.json │ │ ├── output_8651.json │ │ ├── output_8652.json │ │ ├── output_8653.json │ │ ├── output_8654.json │ │ ├── output_8655.json │ │ ├── output_8656.json │ │ ├── output_8657.json │ │ ├── output_8658.json │ │ ├── output_8659.json │ │ ├── output_8660.json │ │ ├── output_8661.json │ │ ├── output_8662.json │ │ ├── output_8663.json │ │ ├── output_8664.json │ │ ├── output_8665.json │ │ ├── output_8666.json │ │ ├── output_8667.json │ │ ├── output_8668.json │ │ ├── output_8669.json │ │ ├── output_8670.json │ │ ├── output_8671.json │ │ ├── output_8672.json │ │ ├── output_8673.json │ │ ├── output_8674.json │ │ ├── output_8675.json │ │ ├── output_8676.json │ │ ├── output_8677.json │ │ ├── output_8678.json │ │ ├── output_8679.json │ │ ├── output_8680.json │ │ ├── output_8681.json │ │ ├── output_8682.json │ │ ├── output_8683.json │ │ ├── output_8684.json │ │ ├── output_8685.json │ │ ├── output_8686.json │ │ ├── output_8687.json │ │ ├── output_8688.json │ │ ├── output_8689.json │ │ ├── output_8690.json │ │ ├── output_8691.json │ │ ├── output_8692.json │ │ ├── output_8693.json │ │ ├── output_8694.json │ │ ├── output_8695.json │ │ ├── output_8696.json │ │ ├── output_8697.json │ │ ├── output_8698.json │ │ ├── output_8699.json │ │ ├── output_8700.json │ │ ├── output_8701.json │ │ ├── output_8702.json │ │ ├── output_8703.json │ │ ├── output_8704.json │ │ ├── output_8705.json │ │ ├── output_8706.json │ │ ├── output_8707.json │ │ ├── output_8708.json │ │ ├── output_8709.json │ │ ├── output_8710.json │ │ ├── output_8711.json │ │ ├── output_8712.json │ │ ├── output_8713.json │ │ ├── output_8714.json │ │ ├── output_8715.json │ │ ├── output_8716.json │ │ ├── output_8717.json │ │ ├── output_8718.json │ │ ├── output_8719.json │ │ ├── output_8720.json │ │ ├── output_8721.json │ │ ├── output_8722.json │ │ ├── output_8723.json │ │ ├── output_8724.json │ │ ├── output_8725.json │ │ ├── output_8726.json │ │ ├── output_8727.json │ │ ├── output_8728.json │ │ ├── output_8729.json │ │ ├── output_8730.json │ │ ├── output_8731.json │ │ ├── output_8732.json │ │ ├── output_8733.json │ │ ├── output_8734.json │ │ ├── output_8735.json │ │ ├── output_8736.json │ │ ├── output_8737.json │ │ ├── output_8738.json │ │ ├── output_8739.json │ │ ├── output_8740.json │ │ ├── output_8741.json │ │ ├── output_8742.json │ │ ├── output_8743.json │ │ ├── output_8744.json │ │ ├── output_8745.json │ │ ├── output_8746.json │ │ ├── output_8747.json │ │ ├── output_8748.json │ │ ├── output_8749.json │ │ ├── output_8750.json │ │ ├── output_8751.json │ │ ├── output_8752.json │ │ ├── output_8753.json │ │ ├── output_8754.json │ │ ├── output_8755.json │ │ ├── output_8756.json │ │ ├── output_8757.json │ │ ├── output_8758.json │ │ ├── output_8759.json │ │ ├── output_8760.json │ │ ├── output_8761.json │ │ ├── output_8762.json │ │ ├── output_8763.json │ │ ├── output_8764.json │ │ ├── output_8765.json │ │ ├── output_8766.json │ │ ├── output_8767.json │ │ ├── output_8768.json │ │ ├── output_8769.json │ │ ├── output_8770.json │ │ ├── output_8771.json │ │ ├── output_8772.json │ │ ├── output_8773.json │ │ ├── output_8774.json │ │ ├── output_8775.json │ │ ├── output_8776.json │ │ ├── output_8777.json │ │ ├── output_8778.json │ │ ├── output_8779.json │ │ ├── output_8780.json │ │ ├── output_8781.json │ │ ├── output_8782.json │ │ ├── output_8783.json │ │ ├── output_8784.json │ │ ├── output_8785.json │ │ ├── output_8786.json │ │ ├── output_8787.json │ │ ├── output_8788.json │ │ ├── output_8789.json │ │ ├── output_8790.json │ │ ├── output_8791.json │ │ ├── output_8792.json │ │ ├── output_8793.json │ │ ├── output_8794.json │ │ ├── output_8795.json │ │ ├── output_8796.json │ │ ├── output_8797.json │ │ ├── output_8798.json │ │ ├── output_8799.json │ │ ├── output_8800.json │ │ ├── output_8801.json │ │ ├── output_8802.json │ │ ├── output_8803.json │ │ ├── output_8804.json │ │ ├── output_8805.json │ │ ├── output_8806.json │ │ ├── output_8807.json │ │ ├── output_8808.json │ │ ├── output_8809.json │ │ ├── output_8810.json │ │ ├── output_8811.json │ │ ├── output_8812.json │ │ ├── output_8813.json │ │ ├── output_8814.json │ │ ├── output_8815.json │ │ ├── output_8816.json │ │ ├── output_8817.json │ │ ├── output_8818.json │ │ ├── output_8819.json │ │ ├── output_8820.json │ │ ├── output_8821.json │ │ ├── output_8822.json │ │ ├── output_8823.json │ │ ├── output_8824.json │ │ ├── output_8825.json │ │ ├── output_8826.json │ │ ├── output_8827.json │ │ ├── output_8828.json │ │ ├── output_8829.json │ │ ├── output_8830.json │ │ ├── output_8831.json │ │ ├── output_8832.json │ │ ├── output_8833.json │ │ ├── output_8834.json │ │ ├── output_8835.json │ │ ├── output_8836.json │ │ ├── output_8837.json │ │ ├── output_8838.json │ │ ├── output_8839.json │ │ ├── output_8840.json │ │ ├── output_8841.json │ │ ├── output_8842.json │ │ ├── output_8843.json │ │ ├── output_8844.json │ │ ├── output_8845.json │ │ ├── output_8846.json │ │ ├── output_8847.json │ │ ├── output_8848.json │ │ ├── output_8849.json │ │ ├── output_8850.json │ │ ├── output_8851.json │ │ ├── output_8852.json │ │ ├── output_8853.json │ │ ├── output_8854.json │ │ ├── output_8855.json │ │ ├── output_8856.json │ │ ├── output_8857.json │ │ ├── output_8858.json │ │ ├── output_8859.json │ │ ├── output_8860.json │ │ ├── output_8861.json │ │ ├── output_8862.json │ │ ├── output_8863.json │ │ ├── output_8864.json │ │ ├── output_8865.json │ │ ├── output_8866.json │ │ ├── output_8867.json │ │ ├── output_8868.json │ │ ├── output_8869.json │ │ ├── output_8870.json │ │ ├── output_8871.json │ │ ├── output_8872.json │ │ ├── output_8873.json │ │ ├── output_8874.json │ │ ├── output_8875.json │ │ ├── output_8876.json │ │ ├── output_8877.json │ │ ├── output_8878.json │ │ ├── output_8879.json │ │ ├── output_8880.json │ │ ├── output_8881.json │ │ ├── output_8882.json │ │ ├── output_8883.json │ │ ├── output_8884.json │ │ ├── output_8885.json │ │ ├── output_8886.json │ │ ├── output_8887.json │ │ ├── output_8888.json │ │ ├── output_8889.json │ │ ├── output_8890.json │ │ ├── output_8891.json │ │ ├── output_8892.json │ │ ├── output_8893.json │ │ ├── output_8894.json │ │ ├── output_8895.json │ │ ├── output_8896.json │ │ ├── output_8897.json │ │ ├── output_8898.json │ │ ├── output_8899.json │ │ ├── output_8900.json │ │ ├── output_8901.json │ │ ├── output_8902.json │ │ ├── output_8903.json │ │ ├── output_8904.json │ │ ├── output_8905.json │ │ ├── output_8906.json │ │ ├── output_8907.json │ │ ├── output_8908.json │ │ ├── output_8909.json │ │ ├── output_8910.json │ │ ├── output_8911.json │ │ ├── output_8912.json │ │ ├── output_8913.json │ │ ├── output_8914.json │ │ ├── output_8915.json │ │ ├── output_8916.json │ │ ├── output_8917.json │ │ ├── output_8918.json │ │ ├── output_8919.json │ │ ├── output_8920.json │ │ ├── output_8921.json │ │ ├── output_8922.json │ │ ├── output_8923.json │ │ ├── output_8924.json │ │ ├── output_8925.json │ │ ├── output_8926.json │ │ ├── output_8927.json │ │ ├── output_8928.json │ │ ├── output_8929.json │ │ ├── output_8930.json │ │ ├── output_8931.json │ │ ├── output_8932.json │ │ ├── output_8933.json │ │ ├── output_8934.json │ │ ├── output_8935.json │ │ ├── output_8936.json │ │ ├── output_8937.json │ │ ├── output_8938.json │ │ ├── output_8939.json │ │ ├── output_8940.json │ │ ├── output_8941.json │ │ ├── output_8942.json │ │ ├── output_8943.json │ │ ├── output_8944.json │ │ ├── output_8945.json │ │ ├── output_8946.json │ │ ├── output_8947.json │ │ ├── output_8948.json │ │ ├── output_8949.json │ │ ├── output_8950.json │ │ ├── output_8951.json │ │ ├── output_8952.json │ │ ├── output_8953.json │ │ ├── output_8954.json │ │ ├── output_8955.json │ │ ├── output_8956.json │ │ ├── output_8957.json │ │ ├── output_8958.json │ │ ├── output_8959.json │ │ ├── output_8960.json │ │ ├── output_8961.json │ │ ├── output_8962.json │ │ ├── output_8963.json │ │ ├── output_8964.json │ │ ├── output_8965.json │ │ ├── output_8966.json │ │ ├── output_8967.json │ │ ├── output_8968.json │ │ ├── output_8969.json │ │ ├── output_8970.json │ │ ├── output_8971.json │ │ ├── output_8972.json │ │ ├── output_8973.json │ │ ├── output_8974.json │ │ ├── output_8975.json │ │ ├── output_8976.json │ │ ├── output_8977.json │ │ ├── output_8978.json │ │ ├── output_8979.json │ │ ├── output_8980.json │ │ ├── output_8981.json │ │ ├── output_8982.json │ │ ├── output_8983.json │ │ ├── output_8984.json │ │ ├── output_8985.json │ │ ├── output_8986.json │ │ ├── output_8987.json │ │ ├── output_8988.json │ │ ├── output_8989.json │ │ ├── output_8990.json │ │ ├── output_8991.json │ │ ├── output_8992.json │ │ ├── output_8993.json │ │ ├── output_8994.json │ │ ├── output_8995.json │ │ ├── output_8996.json │ │ ├── output_8997.json │ │ ├── output_8998.json │ │ ├── output_8999.json │ │ ├── output_9000.json │ │ ├── output_9001.json │ │ ├── output_9002.json │ │ ├── output_9003.json │ │ ├── output_9004.json │ │ ├── output_9005.json │ │ ├── output_9006.json │ │ ├── output_9007.json │ │ ├── output_9008.json │ │ ├── output_9009.json │ │ ├── output_9010.json │ │ ├── output_9011.json │ │ ├── output_9012.json │ │ ├── output_9013.json │ │ ├── output_9014.json │ │ ├── output_9015.json │ │ ├── output_9016.json │ │ ├── output_9017.json │ │ ├── output_9018.json │ │ ├── output_9019.json │ │ ├── output_9020.json │ │ ├── output_9021.json │ │ ├── output_9022.json │ │ ├── output_9023.json │ │ ├── output_9024.json │ │ ├── output_9025.json │ │ ├── output_9026.json │ │ ├── output_9027.json │ │ ├── output_9028.json │ │ ├── output_9029.json │ │ ├── output_9030.json │ │ ├── output_9031.json │ │ ├── output_9032.json │ │ ├── output_9033.json │ │ ├── output_9034.json │ │ ├── output_9035.json │ │ ├── output_9036.json │ │ ├── output_9037.json │ │ ├── output_9038.json │ │ ├── output_9039.json │ │ ├── output_9040.json │ │ ├── output_9041.json │ │ ├── output_9042.json │ │ ├── output_9043.json │ │ ├── output_9044.json │ │ ├── output_9045.json │ │ ├── output_9046.json │ │ ├── output_9047.json │ │ ├── output_9048.json │ │ ├── output_9049.json │ │ ├── output_9050.json │ │ ├── output_9051.json │ │ ├── output_9052.json │ │ ├── output_9053.json │ │ ├── output_9054.json │ │ ├── output_9055.json │ │ ├── output_9056.json │ │ ├── output_9057.json │ │ ├── output_9058.json │ │ ├── output_9059.json │ │ ├── output_9060.json │ │ ├── output_9061.json │ │ ├── output_9062.json │ │ ├── output_9063.json │ │ ├── output_9064.json │ │ ├── output_9065.json │ │ ├── output_9066.json │ │ ├── output_9067.json │ │ ├── output_9068.json │ │ ├── output_9069.json │ │ ├── output_9070.json │ │ ├── output_9071.json │ │ ├── output_9072.json │ │ ├── output_9073.json │ │ ├── output_9074.json │ │ ├── output_9075.json │ │ ├── output_9076.json │ │ ├── output_9077.json │ │ ├── output_9078.json │ │ ├── output_9079.json │ │ ├── output_9080.json │ │ ├── output_9081.json │ │ ├── output_9082.json │ │ ├── output_9083.json │ │ ├── output_9084.json │ │ ├── output_9085.json │ │ ├── output_9086.json │ │ ├── output_9087.json │ │ ├── output_9088.json │ │ ├── output_9089.json │ │ ├── output_9090.json │ │ ├── output_9091.json │ │ ├── output_9092.json │ │ ├── output_9093.json │ │ ├── output_9094.json │ │ ├── output_9095.json │ │ ├── output_9096.json │ │ ├── output_9097.json │ │ ├── output_9098.json │ │ ├── output_9099.json │ │ ├── output_9100.json │ │ ├── output_9101.json │ │ ├── output_9102.json │ │ ├── output_9103.json │ │ ├── output_9104.json │ │ ├── output_9105.json │ │ ├── output_9106.json │ │ ├── output_9107.json │ │ ├── output_9108.json │ │ ├── output_9109.json │ │ ├── output_9110.json │ │ ├── output_9111.json │ │ ├── output_9112.json │ │ ├── output_9113.json │ │ ├── output_9114.json │ │ ├── output_9115.json │ │ ├── output_9116.json │ │ ├── output_9117.json │ │ ├── output_9118.json │ │ ├── output_9119.json │ │ ├── output_9120.json │ │ ├── output_9121.json │ │ ├── output_9122.json │ │ ├── output_9123.json │ │ ├── output_9124.json │ │ ├── output_9125.json │ │ ├── output_9126.json │ │ ├── output_9127.json │ │ ├── output_9128.json │ │ ├── output_9129.json │ │ ├── output_9130.json │ │ ├── output_9131.json │ │ ├── output_9132.json │ │ ├── output_9133.json │ │ ├── output_9134.json │ │ ├── output_9135.json │ │ ├── output_9136.json │ │ ├── output_9137.json │ │ ├── output_9138.json │ │ ├── output_9139.json │ │ ├── output_9140.json │ │ ├── output_9141.json │ │ ├── output_9142.json │ │ ├── output_9143.json │ │ ├── output_9144.json │ │ ├── output_9145.json │ │ ├── output_9146.json │ │ ├── output_9147.json │ │ ├── output_9148.json │ │ ├── output_9149.json │ │ ├── output_9150.json │ │ ├── output_9151.json │ │ ├── output_9152.json │ │ ├── output_9153.json │ │ ├── output_9154.json │ │ ├── output_9155.json │ │ ├── output_9156.json │ │ ├── output_9157.json │ │ ├── output_9158.json │ │ ├── output_9159.json │ │ ├── output_9160.json │ │ ├── output_9161.json │ │ ├── output_9162.json │ │ ├── output_9163.json │ │ ├── output_9164.json │ │ ├── output_9165.json │ │ ├── output_9166.json │ │ ├── output_9167.json │ │ ├── output_9168.json │ │ ├── output_9169.json │ │ ├── output_9170.json │ │ ├── output_9171.json │ │ ├── output_9172.json │ │ ├── output_9173.json │ │ ├── output_9174.json │ │ ├── output_9175.json │ │ ├── output_9176.json │ │ ├── output_9177.json │ │ ├── output_9178.json │ │ ├── output_9179.json │ │ ├── output_9180.json │ │ ├── output_9181.json │ │ ├── output_9182.json │ │ ├── output_9183.json │ │ ├── output_9184.json │ │ ├── output_9185.json │ │ ├── output_9186.json │ │ ├── output_9187.json │ │ ├── output_9188.json │ │ ├── output_9189.json │ │ ├── output_9190.json │ │ ├── output_9191.json │ │ ├── output_9192.json │ │ ├── output_9193.json │ │ ├── output_9194.json │ │ ├── output_9195.json │ │ ├── output_9196.json │ │ ├── output_9197.json │ │ ├── output_9198.json │ │ ├── output_9199.json │ │ ├── output_9200.json │ │ ├── output_9201.json │ │ ├── output_9202.json │ │ ├── output_9203.json │ │ ├── output_9204.json │ │ ├── output_9205.json │ │ ├── output_9206.json │ │ ├── output_9207.json │ │ ├── output_9208.json │ │ ├── output_9209.json │ │ ├── output_9210.json │ │ ├── output_9211.json │ │ ├── output_9212.json │ │ ├── output_9213.json │ │ ├── output_9214.json │ │ ├── output_9215.json │ │ ├── output_9216.json │ │ ├── output_9217.json │ │ ├── output_9218.json │ │ ├── output_9219.json │ │ ├── output_9220.json │ │ ├── output_9221.json │ │ ├── output_9222.json │ │ ├── output_9223.json │ │ ├── output_9224.json │ │ ├── output_9225.json │ │ ├── output_9226.json │ │ ├── output_9227.json │ │ ├── output_9228.json │ │ ├── output_9229.json │ │ ├── output_9230.json │ │ ├── output_9231.json │ │ ├── output_9232.json │ │ ├── output_9233.json │ │ ├── output_9234.json │ │ ├── output_9235.json │ │ ├── output_9236.json │ │ ├── output_9237.json │ │ ├── output_9238.json │ │ ├── output_9239.json │ │ ├── output_9240.json │ │ ├── output_9241.json │ │ ├── output_9242.json │ │ ├── output_9243.json │ │ ├── output_9244.json │ │ ├── output_9245.json │ │ ├── output_9246.json │ │ ├── output_9247.json │ │ ├── output_9248.json │ │ ├── output_9249.json │ │ ├── output_9250.json │ │ ├── output_9251.json │ │ ├── output_9252.json │ │ ├── output_9253.json │ │ ├── output_9254.json │ │ ├── output_9255.json │ │ ├── output_9256.json │ │ ├── output_9257.json │ │ ├── output_9258.json │ │ ├── output_9259.json │ │ ├── output_9260.json │ │ ├── output_9261.json │ │ ├── output_9262.json │ │ ├── output_9263.json │ │ ├── output_9264.json │ │ ├── output_9265.json │ │ ├── output_9266.json │ │ ├── output_9267.json │ │ ├── output_9268.json │ │ ├── output_9269.json │ │ ├── output_9270.json │ │ ├── output_9271.json │ │ ├── output_9272.json │ │ ├── output_9273.json │ │ ├── output_9274.json │ │ ├── output_9275.json │ │ ├── output_9276.json │ │ ├── output_9277.json │ │ ├── output_9278.json │ │ ├── output_9279.json │ │ ├── output_9280.json │ │ ├── output_9281.json │ │ ├── output_9282.json │ │ ├── output_9283.json │ │ ├── output_9284.json │ │ ├── output_9285.json │ │ ├── output_9286.json │ │ ├── output_9287.json │ │ ├── output_9288.json │ │ ├── output_9289.json │ │ ├── output_9290.json │ │ ├── output_9291.json │ │ ├── output_9292.json │ │ ├── output_9293.json │ │ ├── output_9294.json │ │ ├── output_9295.json │ │ ├── output_9296.json │ │ ├── output_9297.json │ │ ├── output_9298.json │ │ ├── output_9299.json │ │ ├── output_9300.json │ │ ├── output_9301.json │ │ ├── output_9302.json │ │ ├── output_9303.json │ │ ├── output_9304.json │ │ ├── output_9305.json │ │ ├── output_9306.json │ │ ├── output_9307.json │ │ ├── output_9308.json │ │ ├── output_9309.json │ │ ├── output_9310.json │ │ ├── output_9311.json │ │ ├── output_9312.json │ │ ├── output_9313.json │ │ ├── output_9314.json │ │ ├── output_9315.json │ │ ├── output_9316.json │ │ ├── output_9317.json │ │ ├── output_9318.json │ │ ├── output_9319.json │ │ ├── output_9320.json │ │ ├── output_9321.json │ │ ├── output_9322.json │ │ ├── output_9323.json │ │ ├── output_9324.json │ │ ├── output_9325.json │ │ ├── output_9326.json │ │ ├── output_9327.json │ │ ├── output_9328.json │ │ ├── output_9329.json │ │ ├── output_9330.json │ │ ├── output_9331.json │ │ ├── output_9332.json │ │ ├── output_9333.json │ │ ├── output_9334.json │ │ ├── output_9335.json │ │ ├── output_9336.json │ │ ├── output_9337.json │ │ ├── output_9338.json │ │ ├── output_9339.json │ │ ├── output_9340.json │ │ ├── output_9341.json │ │ ├── output_9342.json │ │ ├── output_9343.json │ │ ├── output_9344.json │ │ ├── output_9345.json │ │ ├── output_9346.json │ │ ├── output_9347.json │ │ ├── output_9348.json │ │ ├── output_9349.json │ │ ├── output_9350.json │ │ ├── output_9351.json │ │ ├── output_9352.json │ │ ├── output_9353.json │ │ ├── output_9354.json │ │ ├── output_9355.json │ │ ├── output_9356.json │ │ ├── output_9357.json │ │ ├── output_9358.json │ │ ├── output_9359.json │ │ ├── output_9360.json │ │ ├── output_9361.json │ │ ├── output_9362.json │ │ ├── output_9363.json │ │ ├── output_9364.json │ │ ├── output_9365.json │ │ ├── output_9366.json │ │ ├── output_9367.json │ │ ├── output_9368.json │ │ ├── output_9369.json │ │ ├── output_9370.json │ │ ├── output_9371.json │ │ ├── output_9372.json │ │ ├── output_9373.json │ │ ├── output_9374.json │ │ ├── output_9375.json │ │ ├── output_9376.json │ │ ├── output_9377.json │ │ ├── output_9378.json │ │ ├── output_9379.json │ │ ├── output_9380.json │ │ ├── output_9381.json │ │ ├── output_9382.json │ │ ├── output_9383.json │ │ ├── output_9384.json │ │ ├── output_9385.json │ │ ├── output_9386.json │ │ ├── output_9387.json │ │ ├── output_9388.json │ │ ├── output_9389.json │ │ ├── output_9390.json │ │ ├── output_9391.json │ │ ├── output_9392.json │ │ ├── output_9393.json │ │ ├── output_9394.json │ │ ├── output_9395.json │ │ ├── output_9396.json │ │ ├── output_9397.json │ │ ├── output_9398.json │ │ ├── output_9399.json │ │ ├── output_9400.json │ │ ├── output_9401.json │ │ ├── output_9402.json │ │ ├── output_9403.json │ │ ├── output_9404.json │ │ ├── output_9405.json │ │ ├── output_9406.json │ │ ├── output_9407.json │ │ ├── output_9408.json │ │ ├── output_9409.json │ │ ├── output_9410.json │ │ ├── output_9411.json │ │ ├── output_9412.json │ │ ├── output_9413.json │ │ ├── output_9414.json │ │ ├── output_9415.json │ │ ├── output_9416.json │ │ ├── output_9417.json │ │ ├── output_9418.json │ │ ├── output_9419.json │ │ ├── output_9420.json │ │ ├── output_9421.json │ │ ├── output_9422.json │ │ ├── output_9423.json │ │ ├── output_9424.json │ │ ├── output_9425.json │ │ ├── output_9426.json │ │ ├── output_9427.json │ │ ├── output_9428.json │ │ ├── output_9429.json │ │ ├── output_9430.json │ │ ├── output_9431.json │ │ ├── output_9432.json │ │ ├── output_9433.json │ │ ├── output_9434.json │ │ ├── output_9435.json │ │ ├── output_9436.json │ │ ├── output_9437.json │ │ ├── output_9438.json │ │ ├── output_9439.json │ │ ├── output_9440.json │ │ ├── output_9441.json │ │ ├── output_9442.json │ │ ├── output_9443.json │ │ ├── output_9444.json │ │ ├── output_9445.json │ │ ├── output_9446.json │ │ ├── output_9447.json │ │ ├── output_9448.json │ │ ├── output_9449.json │ │ ├── output_9450.json │ │ ├── output_9451.json │ │ ├── output_9452.json │ │ ├── output_9453.json │ │ ├── output_9454.json │ │ ├── output_9455.json │ │ ├── output_9456.json │ │ ├── output_9457.json │ │ ├── output_9458.json │ │ ├── output_9459.json │ │ ├── output_9460.json │ │ ├── output_9461.json │ │ ├── output_9462.json │ │ ├── output_9463.json │ │ ├── output_9464.json │ │ ├── output_9465.json │ │ ├── output_9466.json │ │ ├── output_9467.json │ │ ├── output_9468.json │ │ ├── output_9469.json │ │ ├── output_9470.json │ │ ├── output_9471.json │ │ ├── output_9472.json │ │ ├── output_9473.json │ │ ├── output_9474.json │ │ ├── output_9475.json │ │ ├── output_9476.json │ │ ├── output_9477.json │ │ ├── output_9478.json │ │ ├── output_9479.json │ │ ├── output_9480.json │ │ ├── output_9481.json │ │ ├── output_9482.json │ │ ├── output_9483.json │ │ ├── output_9484.json │ │ ├── output_9485.json │ │ ├── output_9486.json │ │ ├── output_9487.json │ │ ├── output_9488.json │ │ ├── output_9489.json │ │ ├── output_9490.json │ │ ├── output_9491.json │ │ ├── output_9492.json │ │ ├── output_9493.json │ │ ├── output_9494.json │ │ ├── output_9495.json │ │ ├── output_9496.json │ │ ├── output_9497.json │ │ ├── output_9498.json │ │ ├── output_9499.json │ │ ├── output_9500.json │ │ ├── output_9501.json │ │ ├── output_9502.json │ │ ├── output_9503.json │ │ ├── output_9504.json │ │ ├── output_9505.json │ │ ├── output_9506.json │ │ ├── output_9507.json │ │ ├── output_9508.json │ │ ├── output_9509.json │ │ ├── output_9510.json │ │ ├── output_9511.json │ │ ├── output_9512.json │ │ ├── output_9513.json │ │ ├── output_9514.json │ │ ├── output_9515.json │ │ ├── output_9516.json │ │ ├── output_9517.json │ │ ├── output_9518.json │ │ ├── output_9519.json │ │ ├── output_9520.json │ │ ├── output_9521.json │ │ ├── output_9522.json │ │ ├── output_9523.json │ │ ├── output_9524.json │ │ ├── output_9525.json │ │ ├── output_9526.json │ │ ├── output_9527.json │ │ ├── output_9528.json │ │ ├── output_9529.json │ │ ├── output_9530.json │ │ ├── output_9531.json │ │ ├── output_9532.json │ │ ├── output_9533.json │ │ ├── output_9534.json │ │ ├── output_9535.json │ │ ├── output_9536.json │ │ ├── output_9537.json │ │ ├── output_9538.json │ │ ├── output_9539.json │ │ ├── output_9540.json │ │ ├── output_9541.json │ │ ├── output_9542.json │ │ ├── output_9543.json │ │ ├── output_9544.json │ │ ├── output_9545.json │ │ ├── output_9546.json │ │ ├── output_9547.json │ │ ├── output_9548.json │ │ ├── output_9549.json │ │ ├── output_9550.json │ │ ├── output_9551.json │ │ ├── output_9552.json │ │ ├── output_9553.json │ │ ├── output_9554.json │ │ ├── output_9555.json │ │ ├── output_9556.json │ │ ├── output_9557.json │ │ ├── output_9558.json │ │ ├── output_9559.json │ │ ├── output_9560.json │ │ ├── output_9561.json │ │ ├── output_9562.json │ │ ├── output_9563.json │ │ ├── output_9564.json │ │ ├── output_9565.json │ │ ├── output_9566.json │ │ ├── output_9567.json │ │ ├── output_9568.json │ │ ├── output_9569.json │ │ ├── output_9570.json │ │ ├── output_9571.json │ │ ├── output_9572.json │ │ ├── output_9573.json │ │ ├── output_9574.json │ │ ├── output_9575.json │ │ ├── output_9576.json │ │ ├── output_9577.json │ │ ├── output_9578.json │ │ ├── output_9579.json │ │ ├── output_9580.json │ │ ├── output_9581.json │ │ ├── output_9582.json │ │ ├── output_9583.json │ │ ├── output_9584.json │ │ ├── output_9585.json │ │ ├── output_9586.json │ │ ├── output_9587.json │ │ ├── output_9588.json │ │ ├── output_9589.json │ │ ├── output_9590.json │ │ ├── output_9591.json │ │ ├── output_9592.json │ │ ├── output_9593.json │ │ ├── output_9594.json │ │ ├── output_9595.json │ │ ├── output_9596.json │ │ ├── output_9597.json │ │ ├── output_9598.json │ │ ├── output_9599.json │ │ ├── output_9600.json │ │ ├── output_9601.json │ │ ├── output_9602.json │ │ ├── output_9603.json │ │ ├── output_9604.json │ │ ├── output_9605.json │ │ ├── output_9606.json │ │ ├── output_9607.json │ │ ├── output_9608.json │ │ ├── output_9609.json │ │ ├── output_9610.json │ │ ├── output_9611.json │ │ ├── output_9612.json │ │ ├── output_9613.json │ │ ├── output_9614.json │ │ ├── output_9615.json │ │ ├── output_9616.json │ │ ├── output_9617.json │ │ ├── output_9618.json │ │ ├── output_9619.json │ │ ├── output_9620.json │ │ ├── output_9621.json │ │ ├── output_9622.json │ │ ├── output_9623.json │ │ ├── output_9624.json │ │ ├── output_9625.json │ │ ├── output_9626.json │ │ ├── output_9627.json │ │ ├── output_9628.json │ │ ├── output_9629.json │ │ ├── output_9630.json │ │ ├── output_9631.json │ │ ├── output_9632.json │ │ ├── output_9633.json │ │ ├── output_9634.json │ │ ├── output_9635.json │ │ ├── output_9636.json │ │ ├── output_9637.json │ │ ├── output_9638.json │ │ ├── output_9639.json │ │ ├── output_9640.json │ │ ├── output_9641.json │ │ ├── output_9642.json │ │ ├── output_9643.json │ │ ├── output_9644.json │ │ ├── output_9645.json │ │ ├── output_9646.json │ │ ├── output_9647.json │ │ ├── output_9648.json │ │ ├── output_9649.json │ │ ├── output_9650.json │ │ ├── output_9651.json │ │ ├── output_9652.json │ │ ├── output_9653.json │ │ ├── output_9654.json │ │ ├── output_9655.json │ │ ├── output_9656.json │ │ ├── output_9657.json │ │ ├── output_9658.json │ │ ├── output_9659.json │ │ ├── output_9660.json │ │ ├── output_9661.json │ │ ├── output_9662.json │ │ ├── output_9663.json │ │ ├── output_9664.json │ │ ├── output_9665.json │ │ ├── output_9666.json │ │ ├── output_9667.json │ │ ├── output_9668.json │ │ ├── output_9669.json │ │ ├── output_9670.json │ │ ├── output_9671.json │ │ ├── output_9672.json │ │ ├── output_9673.json │ │ ├── output_9674.json │ │ ├── output_9675.json │ │ ├── output_9676.json │ │ ├── output_9677.json │ │ ├── output_9678.json │ │ ├── output_9679.json │ │ ├── output_9680.json │ │ ├── output_9681.json │ │ ├── output_9682.json │ │ ├── output_9683.json │ │ ├── output_9684.json │ │ ├── output_9685.json │ │ ├── output_9686.json │ │ ├── output_9687.json │ │ ├── output_9688.json │ │ ├── output_9689.json │ │ ├── output_9690.json │ │ ├── output_9691.json │ │ ├── output_9692.json │ │ ├── output_9693.json │ │ ├── output_9694.json │ │ ├── output_9695.json │ │ ├── output_9696.json │ │ ├── output_9697.json │ │ ├── output_9698.json │ │ ├── output_9699.json │ │ ├── output_9700.json │ │ ├── output_9701.json │ │ ├── output_9702.json │ │ ├── output_9703.json │ │ ├── output_9704.json │ │ ├── output_9705.json │ │ ├── output_9706.json │ │ ├── output_9707.json │ │ ├── output_9708.json │ │ ├── output_9709.json │ │ ├── output_9710.json │ │ ├── output_9711.json │ │ ├── output_9712.json │ │ ├── output_9713.json │ │ ├── output_9714.json │ │ ├── output_9715.json │ │ ├── output_9716.json │ │ ├── output_9717.json │ │ ├── output_9718.json │ │ ├── output_9719.json │ │ ├── output_9720.json │ │ ├── output_9721.json │ │ ├── output_9722.json │ │ ├── output_9723.json │ │ ├── output_9724.json │ │ ├── output_9725.json │ │ ├── output_9726.json │ │ ├── output_9727.json │ │ ├── output_9728.json │ │ ├── output_9729.json │ │ ├── output_9730.json │ │ ├── output_9731.json │ │ ├── output_9732.json │ │ ├── output_9733.json │ │ ├── output_9734.json │ │ ├── output_9735.json │ │ ├── output_9736.json │ │ ├── output_9737.json │ │ ├── output_9738.json │ │ ├── output_9739.json │ │ ├── output_9740.json │ │ ├── output_9741.json │ │ ├── output_9742.json │ │ ├── output_9743.json │ │ ├── output_9744.json │ │ ├── output_9745.json │ │ ├── output_9746.json │ │ ├── output_9747.json │ │ ├── output_9748.json │ │ ├── output_9749.json │ │ ├── output_9750.json │ │ ├── output_9751.json │ │ ├── output_9752.json │ │ ├── output_9753.json │ │ ├── output_9754.json │ │ ├── output_9755.json │ │ ├── output_9756.json │ │ ├── output_9757.json │ │ ├── output_9758.json │ │ ├── output_9759.json │ │ ├── output_9760.json │ │ ├── output_9761.json │ │ ├── output_9762.json │ │ ├── output_9763.json │ │ ├── output_9764.json │ │ ├── output_9765.json │ │ ├── output_9766.json │ │ ├── output_9767.json │ │ ├── output_9768.json │ │ ├── output_9769.json │ │ ├── output_9770.json │ │ ├── output_9771.json │ │ ├── output_9772.json │ │ ├── output_9773.json │ │ ├── output_9774.json │ │ ├── output_9775.json │ │ ├── output_9776.json │ │ ├── output_9777.json │ │ ├── output_9778.json │ │ ├── output_9779.json │ │ ├── output_9780.json │ │ ├── output_9781.json │ │ ├── output_9782.json │ │ ├── output_9783.json │ │ ├── output_9784.json │ │ ├── output_9785.json │ │ ├── output_9786.json │ │ ├── output_9787.json │ │ ├── output_9788.json │ │ ├── output_9789.json │ │ ├── output_9790.json │ │ ├── output_9791.json │ │ ├── output_9792.json │ │ ├── output_9793.json │ │ ├── output_9794.json │ │ ├── output_9795.json │ │ ├── output_9796.json │ │ ├── output_9797.json │ │ ├── output_9798.json │ │ ├── output_9799.json │ │ ├── output_9800.json │ │ ├── output_9801.json │ │ ├── output_9802.json │ │ ├── output_9803.json │ │ ├── output_9804.json │ │ ├── output_9805.json │ │ ├── output_9806.json │ │ ├── output_9807.json │ │ ├── output_9808.json │ │ ├── output_9809.json │ │ ├── output_9810.json │ │ ├── output_9811.json │ │ ├── output_9812.json │ │ ├── output_9813.json │ │ ├── output_9814.json │ │ ├── output_9815.json │ │ ├── output_9816.json │ │ ├── output_9817.json │ │ ├── output_9818.json │ │ ├── output_9819.json │ │ ├── output_9820.json │ │ ├── output_9821.json │ │ ├── output_9822.json │ │ ├── output_9823.json │ │ ├── output_9824.json │ │ ├── output_9825.json │ │ ├── output_9826.json │ │ ├── output_9827.json │ │ ├── output_9828.json │ │ ├── output_9829.json │ │ ├── output_9830.json │ │ ├── output_9831.json │ │ ├── output_9832.json │ │ ├── output_9833.json │ │ ├── output_9834.json │ │ ├── output_9835.json │ │ ├── output_9836.json │ │ ├── output_9837.json │ │ ├── output_9838.json │ │ ├── output_9839.json │ │ ├── output_9840.json │ │ ├── output_9841.json │ │ ├── output_9842.json │ │ ├── output_9843.json │ │ ├── output_9844.json │ │ ├── output_9845.json │ │ ├── output_9846.json │ │ ├── output_9847.json │ │ ├── output_9848.json │ │ ├── output_9849.json │ │ ├── output_9850.json │ │ ├── output_9851.json │ │ ├── output_9852.json │ │ ├── output_9853.json │ │ ├── output_9854.json │ │ ├── output_9855.json │ │ ├── output_9856.json │ │ ├── output_9857.json │ │ ├── output_9858.json │ │ ├── output_9859.json │ │ ├── output_9860.json │ │ ├── output_9861.json │ │ ├── output_9862.json │ │ ├── output_9863.json │ │ ├── output_9864.json │ │ ├── output_9865.json │ │ ├── output_9866.json │ │ ├── output_9867.json │ │ ├── output_9868.json │ │ ├── output_9869.json │ │ ├── output_9870.json │ │ ├── output_9871.json │ │ ├── output_9872.json │ │ ├── output_9873.json │ │ ├── output_9874.json │ │ ├── output_9875.json │ │ ├── output_9876.json │ │ ├── output_9877.json │ │ ├── output_9878.json │ │ ├── output_9879.json │ │ ├── output_9880.json │ │ ├── output_9881.json │ │ ├── output_9882.json │ │ ├── output_9883.json │ │ ├── output_9884.json │ │ ├── output_9885.json │ │ ├── output_9886.json │ │ ├── output_9887.json │ │ ├── output_9888.json │ │ ├── output_9889.json │ │ ├── output_9890.json │ │ ├── output_9891.json │ │ ├── output_9892.json │ │ ├── output_9893.json │ │ ├── output_9894.json │ │ ├── output_9895.json │ │ ├── output_9896.json │ │ ├── output_9897.json │ │ ├── output_9898.json │ │ ├── output_9899.json │ │ ├── output_9900.json │ │ ├── output_9901.json │ │ ├── output_9902.json │ │ ├── output_9903.json │ │ ├── output_9904.json │ │ ├── output_9905.json │ │ ├── output_9906.json │ │ ├── output_9907.json │ │ ├── output_9908.json │ │ ├── output_9909.json │ │ ├── output_9910.json │ │ ├── output_9911.json │ │ ├── output_9912.json │ │ ├── output_9913.json │ │ ├── output_9914.json │ │ ├── output_9915.json │ │ └── output_9916.json │ └── preprocess.py ├── data2vis │ ├── .gitignore │ ├── README.md │ ├── examples │ │ ├── barley1 │ │ │ ├── mark=area|x=bin_yield,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_yield,Q|y=count_*,Q|color=site,N-vl.json │ │ │ ├── mark=area|x=bin_yield,Q|y=count_*,Q|detail=site,N-vl.json │ │ │ ├── mark=area|x=bin_yield,Q|y=count_*,Q|detail=variety,N-vl.json │ │ │ ├── mark=area|x=bin_yield,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q|color=site,N-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q|color=variety,N-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q|detail=site,N-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q|detail=variety,N-vl.json │ │ │ ├── mark=bar|x=bin_yield,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_yield,Q|color=variety,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_yield,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_yield,Q|detail=site,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_yield,Q|detail=variety,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_yield,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=site,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=site,N|color=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=site,N|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=site,N|detail=variety,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=site,N|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=variety,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=variety,N|color=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=variety,N|color=site,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=variety,N|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=variety,N|detail=site,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=variety,N|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|color=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|detail=site,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|detail=variety,N-vl.json │ │ │ ├── mark=bar|x=mean_yield,Q|y=site,N-vl.json │ │ │ ├── mark=bar|x=mean_yield,Q|y=variety,N-vl.json │ │ │ ├── mark=bar|x=mean_yield,Q|y=year,O-vl.json │ │ │ ├── mark=bar|x=site,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=site,N|y=count_*,Q|color=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=site,N|y=count_*,Q|color=variety,N-vl.json │ │ │ ├── mark=bar|x=site,N|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=site,N|y=count_*,Q|detail=variety,N-vl.json │ │ │ ├── mark=bar|x=site,N|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=site,N|y=mean_yield,Q-vl.json │ │ │ ├── mark=bar|x=variety,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=variety,N|y=count_*,Q|color=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=variety,N|y=count_*,Q|color=site,N-vl.json │ │ │ ├── mark=bar|x=variety,N|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=variety,N|y=count_*,Q|detail=site,N-vl.json │ │ │ ├── mark=bar|x=variety,N|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=variety,N|y=mean_yield,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=bin_yield,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=site,N-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=variety,N-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|detail=site,N-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|detail=variety,N-vl.json │ │ │ ├── mark=bar|x=year,O|y=mean_yield,Q-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q|color=site,N-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q|color=variety,N-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q|detail=site,N-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q|detail=variety,N-vl.json │ │ │ ├── mark=line|x=bin_yield,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|color=site,N-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|color=variety,N-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|detail=site,N-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|detail=variety,N-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|shape=site,N-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=count_*,Q|shape=year,O-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=site,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=site,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=variety,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=variety,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_yield,Q|y=year,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|color=site,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|color=variety,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|color=year,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|detail=site,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|detail=variety,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|detail=year,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|shape=site,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_yield,Q|shape=year,O-vl.json │ │ │ ├── mark=point|x=mean_yield,Q|y=site,N-vl.json │ │ │ ├── mark=point|x=mean_yield,Q|y=variety,N-vl.json │ │ │ ├── mark=point|x=site,N|y=bin_yield,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=site,N|y=bin_yield,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=site,N|y=mean_yield,Q-vl.json │ │ │ ├── mark=point|x=site,N|y=variety,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=site,N|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=site,N|y=yield,Q-vl.json │ │ │ ├── mark=point|x=variety,N|y=bin_yield,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=variety,N|y=bin_yield,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=variety,N|y=bin_yield,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=variety,N|y=mean_yield,Q-vl.json │ │ │ ├── mark=point|x=variety,N|y=site,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=variety,N|y=yield,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_yield,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_yield,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=site,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=variety,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=yield,Q-vl.json │ │ │ ├── mark=point|x=yield,Q|y=site,N-vl.json │ │ │ ├── mark=point|x=yield,Q|y=variety,N-vl.json │ │ │ ├── mark=point|x=yield,Q|y=year,O-vl.json │ │ │ ├── mark=tick|x=site,N|y=yield,Q-vl.json │ │ │ ├── mark=tick|x=variety,N|y=yield,Q-vl.json │ │ │ ├── mark=tick|x=year,O|y=yield,Q-vl.json │ │ │ ├── mark=tick|x=yield,Q|y=site,N-vl.json │ │ │ ├── mark=tick|x=yield,Q|y=variety,N-vl.json │ │ │ └── mark=tick|x=yield,Q|y=year,O-vl.json │ │ ├── birdstrikes1 │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Other,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Repair,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=area|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=area|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=area|x=year_Flight_Date,T|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=Effect__Amount_of_damage,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=Origin_State,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=When__Phase_of_flight,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=When__Time_of_day,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=Wildlife__Size,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Other,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Repair,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Effect__Amount_of_damage,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin_State,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Phase_of_flight,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Phase_of_flight,N|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Phase_of_flight,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Phase_of_flight,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Time_of_day,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Time_of_day,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Time_of_day,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Time_of_day,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=When__Time_of_day,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Wildlife__Size,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Wildlife__Size,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Wildlife__Size,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Wildlife__Size,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Wildlife__Size,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Other,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Repair,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Cost__Total_$,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Flight_Date,T|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Other,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Other,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Other,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Other,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Other,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Other,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Repair,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Repair,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Repair,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Repair,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Repair,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Repair,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Total_$,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Total_$,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Total_$,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Total_$,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Total_$,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=mean_Cost__Total_$,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=mean_Speed_IAS_in_knots,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=mean_Speed_IAS_in_knots,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=mean_Speed_IAS_in_knots,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=mean_Speed_IAS_in_knots,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=bar|x=year_Flight_Date,T|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=line|x=bin_Cost__Total_$,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=line|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=line|x=year_Flight_Date,T|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Cost__Other,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=Cost__Other,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=Cost__Other,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=Cost__Other,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=Cost__Other,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=Cost__Other,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=Cost__Repair,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=Cost__Repair,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=Cost__Repair,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=Cost__Repair,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=Cost__Repair,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=Cost__Repair,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=Cost__Total_$,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=Cost__Total_$,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=Cost__Total_$,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=Cost__Total_$,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=Cost__Total_$,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=Cost__Total_$,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=bin_Cost__Other,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=bin_Cost__Other,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=bin_Cost__Total_$,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=bin_Speed_IAS_in_knots,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=bin_Speed_IAS_in_knots,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=bin_Speed_IAS_in_knots,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=year_Flight_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Effect__Amount_of_damage,N|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=bin_Speed_IAS_in_knots,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Origin_State,N|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=Speed_IAS_in_knots,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=Speed_IAS_in_knots,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=Speed_IAS_in_knots,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=Speed_IAS_in_knots,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Other,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Other,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Repair,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Repair,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Total_$,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Total_$,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Cost__Total_$,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Speed_IAS_in_knots,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Speed_IAS_in_knots,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=bin_Speed_IAS_in_knots,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=mean_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=year_Flight_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Phase_of_flight,N|y=year_Flight_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Other,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Other,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Other,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Repair,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Repair,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Total_$,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Total_$,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Cost__Total_$,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=bin_Speed_IAS_in_knots,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=When__Time_of_day,N|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Other,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Other,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Other,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Repair,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Repair,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Repair,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Total_$,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Cost__Total_$,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Speed_IAS_in_knots,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=bin_Speed_IAS_in_knots,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=Wildlife__Size,N|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=Effect__Amount_of_damage,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=Effect__Amount_of_damage,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=Effect__Amount_of_damage,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=When__Phase_of_flight,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=When__Phase_of_flight,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=When__Phase_of_flight,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=When__Time_of_day,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=When__Time_of_day,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=Wildlife__Size,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=Wildlife__Size,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=Wildlife__Size,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|shape=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=count_*,Q|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=year_Flight_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Other,Q|y=year_Flight_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=Effect__Amount_of_damage,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=Effect__Amount_of_damage,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=Effect__Amount_of_damage,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=When__Phase_of_flight,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=When__Phase_of_flight,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=When__Phase_of_flight,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=When__Time_of_day,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=When__Time_of_day,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=Wildlife__Size,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=Wildlife__Size,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|shape=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=count_*,Q|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=year_Flight_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Repair,Q|y=year_Flight_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=Effect__Amount_of_damage,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=Effect__Amount_of_damage,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=When__Phase_of_flight,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=When__Phase_of_flight,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=When__Phase_of_flight,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=When__Time_of_day,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=Wildlife__Size,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=Wildlife__Size,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=year_Flight_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Cost__Total_$,Q|y=year_Flight_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Origin_State,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Origin_State,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Origin_State,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=When__Time_of_day,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=When__Time_of_day,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=When__Time_of_day,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Wildlife__Size,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Wildlife__Size,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=Wildlife__Size,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|shape=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=count_*,Q|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=year_Flight_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=year_Flight_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Speed_IAS_in_knots,Q|y=year_Flight_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Effect__Amount_of_damage,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Origin_State,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Phase_of_flight,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Phase_of_flight,N|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Phase_of_flight,N|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Phase_of_flight,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Phase_of_flight,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Time_of_day,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Time_of_day,N|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Time_of_day,N|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Time_of_day,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=When__Time_of_day,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Wildlife__Size,N|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Wildlife__Size,N|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Wildlife__Size,N|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Wildlife__Size,N|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Wildlife__Size,N|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|color=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Cost__Other,Q|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|detail=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|shape=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|shape=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Speed_IAS_in_knots,Q|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Airport__Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|shape=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|shape=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Flight_Date,T|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Other,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Other,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Other,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Other,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Other,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Other,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=mean_Cost__Repair,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Repair,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Repair,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Repair,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Repair,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Repair,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=mean_Cost__Total_$,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Total_$,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Total_$,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Total_$,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=mean_Cost__Total_$,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=mean_Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=mean_Speed_IAS_in_knots,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=point|x=mean_Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=mean_Speed_IAS_in_knots,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=mean_Speed_IAS_in_knots,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Effect__Amount_of_damage,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Effect__Amount_of_damage,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Origin_State,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Origin_State,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Origin_State,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=When__Phase_of_flight,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=When__Phase_of_flight,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=When__Phase_of_flight,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=When__Time_of_day,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=When__Time_of_day,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=When__Time_of_day,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Wildlife__Size,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Wildlife__Size,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=Wildlife__Size,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Other,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Other,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Repair,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Repair,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Repair,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Total_$,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Total_$,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Cost__Total_$,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Speed_IAS_in_knots,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Speed_IAS_in_knots,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=bin_Speed_IAS_in_knots,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=bin_Cost__Total_$,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|color=bin_Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Airline_Operator,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Aircraft__Make_Model,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Airport__Name,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Origin_State,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|detail=Wildlife__Species,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|shape=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|shape=When__Time_of_day,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=count_*,Q|shape=Wildlife__Size,N-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=mean_Cost__Other,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=mean_Cost__Repair,Q-vl.json │ │ │ ├── mark=point|x=year_Flight_Date,T|y=mean_Cost__Total_$,Q-vl.json │ │ │ ├── mark=tick|x=Cost__Other,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=tick|x=Cost__Other,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=tick|x=Cost__Other,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=tick|x=Cost__Other,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=tick|x=Cost__Other,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=tick|x=Cost__Other,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=tick|x=Cost__Repair,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=tick|x=Cost__Repair,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=tick|x=Cost__Repair,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=tick|x=Cost__Repair,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=tick|x=Cost__Repair,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=tick|x=Cost__Repair,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=tick|x=Cost__Total_$,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=tick|x=Cost__Total_$,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=tick|x=Cost__Total_$,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=tick|x=Cost__Total_$,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=tick|x=Cost__Total_$,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=tick|x=Cost__Total_$,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=tick|x=Effect__Amount_of_damage,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=tick|x=Effect__Amount_of_damage,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=tick|x=Effect__Amount_of_damage,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=tick|x=Effect__Amount_of_damage,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=tick|x=Origin_State,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=tick|x=Origin_State,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=tick|x=Origin_State,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=tick|x=Origin_State,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=tick|x=Speed_IAS_in_knots,Q|y=Effect__Amount_of_damage,N-vl.json │ │ │ ├── mark=tick|x=Speed_IAS_in_knots,Q|y=Origin_State,N-vl.json │ │ │ ├── mark=tick|x=Speed_IAS_in_knots,Q|y=When__Phase_of_flight,N-vl.json │ │ │ ├── mark=tick|x=Speed_IAS_in_knots,Q|y=When__Time_of_day,N-vl.json │ │ │ ├── mark=tick|x=Speed_IAS_in_knots,Q|y=Wildlife__Size,N-vl.json │ │ │ ├── mark=tick|x=Speed_IAS_in_knots,Q|y=year_Flight_Date,T-vl.json │ │ │ ├── mark=tick|x=When__Phase_of_flight,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=tick|x=When__Phase_of_flight,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=tick|x=When__Phase_of_flight,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=tick|x=When__Phase_of_flight,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=tick|x=When__Time_of_day,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=tick|x=When__Time_of_day,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=tick|x=When__Time_of_day,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=tick|x=When__Time_of_day,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=tick|x=Wildlife__Size,N|y=Cost__Other,Q-vl.json │ │ │ ├── mark=tick|x=Wildlife__Size,N|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=tick|x=Wildlife__Size,N|y=Cost__Total_$,Q-vl.json │ │ │ ├── mark=tick|x=Wildlife__Size,N|y=Speed_IAS_in_knots,Q-vl.json │ │ │ ├── mark=tick|x=year_Flight_Date,T|y=Cost__Other,Q-vl.json │ │ │ ├── mark=tick|x=year_Flight_Date,T|y=Cost__Repair,Q-vl.json │ │ │ ├── mark=tick|x=year_Flight_Date,T|y=Cost__Total_$,Q-vl.json │ │ │ └── mark=tick|x=year_Flight_Date,T|y=Speed_IAS_in_knots,Q-vl.json │ │ ├── burtin1 │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|color=Bacteria,N-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|detail=Penicilin,O-vl.json │ │ │ ├── mark=area|x=Neomycin,O|y=count_*,Q|detail=Streptomycin,O-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|color=Bacteria,N-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=area|x=Penicilin,O|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q|color=Bacteria,N-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=area|x=Streptomycin,O|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|color=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=count_*,Q|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=mean_Neomycin,Q-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=mean_Penicilin,Q-vl.json │ │ │ ├── mark=bar|x=Bacteria,N|y=mean_Streptomycin,Q-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|color=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|color=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=count_*,Q|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=mean_Neomycin,Q-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=mean_Penicilin,Q-vl.json │ │ │ ├── mark=bar|x=Genus,N|y=mean_Streptomycin,Q-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|color=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=count_*,Q|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=mean_Neomycin,Q-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=mean_Penicilin,Q-vl.json │ │ │ ├── mark=bar|x=Gram_Staining,N|y=mean_Streptomycin,Q-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|color=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|color=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=Neomycin,O|y=count_*,Q|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|color=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|color=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Penicilin,O|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=Streptomycin,O|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|color=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Bacteria,N|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|color=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|color=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Genus,N|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|color=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|color=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|color=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Gram_Staining,N|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|color=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|color=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|detail=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Neomycin,O|detail=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|color=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|color=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Penicilin,O|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|color=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|color=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|color=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|detail=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|detail=Genus,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Streptomycin,O|detail=Neomycin,O-vl.json │ │ │ ├── mark=bar|x=mean_Neomycin,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=mean_Neomycin,Q|y=Genus,N-vl.json │ │ │ ├── mark=bar|x=mean_Neomycin,Q|y=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=mean_Penicilin,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=mean_Penicilin,Q|y=Genus,N-vl.json │ │ │ ├── mark=bar|x=mean_Penicilin,Q|y=Gram_Staining,N-vl.json │ │ │ ├── mark=bar|x=mean_Streptomycin,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=bar|x=mean_Streptomycin,Q|y=Genus,N-vl.json │ │ │ ├── mark=bar|x=mean_Streptomycin,Q|y=Gram_Staining,N-vl.json │ │ │ ├── mark=line|x=Neomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=Neomycin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=line|x=Neomycin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=line|x=Neomycin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=line|x=Neomycin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=line|x=Penicilin,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=Penicilin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=line|x=Penicilin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=line|x=Penicilin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=line|x=Penicilin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=line|x=Streptomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=Streptomycin,O|y=count_*,Q|color=Genus,N-vl.json │ │ │ ├── mark=line|x=Streptomycin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=line|x=Streptomycin,O|y=count_*,Q|detail=Genus,N-vl.json │ │ │ ├── mark=line|x=Streptomycin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Genus,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Gram_Staining,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Neomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Neomycin,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Penicilin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Penicilin,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Streptomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=Streptomycin,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=mean_Neomycin,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=mean_Penicilin,Q-vl.json │ │ │ ├── mark=point|x=Bacteria,N|y=mean_Streptomycin,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Bacteria,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Gram_Staining,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Gram_Staining,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Gram_Staining,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Neomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Neomycin,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Penicilin,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Penicilin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Penicilin,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Streptomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Streptomycin,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=Streptomycin,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Genus,N|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Genus,N|y=count_*,Q|detail=Neomycin,O-vl.json │ │ │ ├── mark=point|x=Genus,N|y=count_*,Q|detail=Penicilin,O-vl.json │ │ │ ├── mark=point|x=Genus,N|y=count_*,Q|detail=Streptomycin,O-vl.json │ │ │ ├── mark=point|x=Genus,N|y=count_*,Q|shape=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Bacteria,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Genus,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Neomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Neomycin,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Penicilin,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Penicilin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Penicilin,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Penicilin,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Streptomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Streptomycin,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Gram_Staining,N|y=Streptomycin,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=Bacteria,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=Genus,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=Gram_Staining,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=Gram_Staining,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=Penicilin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=Streptomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Neomycin,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=point|x=Neomycin,Q|y=Streptomycin,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=Bacteria,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=Genus,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=Genus,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=Genus,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=Gram_Staining,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=Neomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=count_*,Q|detail=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=count_*,Q|shape=Genus,N-vl.json │ │ │ ├── mark=point|x=Penicilin,O|y=count_*,Q|shape=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Penicilin,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=point|x=Penicilin,Q|y=Genus,N-vl.json │ │ │ ├── mark=point|x=Penicilin,Q|y=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Bacteria,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Genus,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Genus,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Genus,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Gram_Staining,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Gram_Staining,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=Neomycin,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=count_*,Q|color=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Streptomycin,O|y=count_*,Q|shape=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=Streptomycin,Q|y=Bacteria,N-vl.json │ │ │ ├── mark=point|x=Streptomycin,Q|y=Genus,N-vl.json │ │ │ ├── mark=point|x=Streptomycin,Q|y=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Neomycin,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Neomycin,O|shape=Genus,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Neomycin,O|shape=Gram_Staining,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Penicilin,O-vl.json │ │ │ ├── mark=point|x=mean_Streptomycin,Q|y=Bacteria,N-vl.json │ │ │ └── mark=point|x=mean_Streptomycin,Q|y=Genus,N-vl.json │ │ ├── campaigns1 │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_District,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Candidate,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=area|x=Contributions_from_Party_Committees,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=area|x=Loans_from_Candidate,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=area|x=Other_Loan_Repayments,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=count_*,Q|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=area|x=Party_Code,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=count_*,Q|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=area|x=Refunds_to_Individuals,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=area|x=Transfers_to_Authorized_Committees,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=area|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_District,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Candidate_State,N|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=Contributions_from_Candidate,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=Incumbent_Challenger_Status,N|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Incumbent_Challenger_Status,N|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Incumbent_Challenger_Status,N|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Incumbent_Challenger_Status,N|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=count_*,Q|color=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=count_*,Q|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Loans_from_Candidate,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loan_Repayments,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Other_Loans,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|color=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Party_Affiliation,N|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=count_*,Q|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Party_Code,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Committees,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q|color=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=bar|x=Refunds_to_Individuals,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|color=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_District,O|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_State,N|color=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_State,N|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_State,N|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_State,N|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Candidate_State,N|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Contributions_from_Candidate,O|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Loans_from_Candidate,O|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Loans_from_Candidate,O|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Loans_from_Candidate,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Loans_from_Candidate,O|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Other_Loans,O|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Other_Loans,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Other_Loans,O|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Affiliation,N|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Affiliation,N|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Affiliation,N|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Affiliation,N|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Affiliation,N|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O|detail=Candidate_District,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Party_Code,O|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Beginning_Cash,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Beginning_Cash,Q|y=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=mean_Beginning_Cash,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=mean_Beginning_Cash,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=mean_Beginning_Cash,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=mean_Beginning_Cash,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_District,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_District,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_District,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_District,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_District,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_District,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=mean_Candidate_Loan_Repayments,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=bar|x=mean_Contributions_from_Candidate,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=mean_Contributions_from_Candidate,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=bar|x=mean_Debts_Owed_By,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|color=Other_Loans,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_District,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|color=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=Contributions_from_Candidate,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=line|x=Contributions_from_Party_Committees,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=line|x=Loans_from_Candidate,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=count_*,Q|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=line|x=Other_Loan_Repayments,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=line|x=Party_Code,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=line|x=Party_Code,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=line|x=Party_Code,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=line|x=Party_Code,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=line|x=Party_Code,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=line|x=Refunds_to_Individuals,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=line|x=Refunds_to_Individuals,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=line|x=Refunds_to_Individuals,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=line|x=Refunds_to_Individuals,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=line|x=Refunds_to_Individuals,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=line|x=Transfers_to_Authorized_Committees,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=line|x=Transfers_to_Authorized_Committees,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=line|x=Transfers_to_Authorized_Committees,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=line|x=Transfers_to_Authorized_Committees,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=line|x=Transfers_to_Authorized_Committees,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|color=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=line|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=point|x=Beginning_Cash,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Beginning_Cash,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Beginning_Cash,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Candidate_State,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Candidate_State,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Candidate_State,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Incumbent_Challenger_Status,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Loans_from_Candidate,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Other_Loans,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Party_Affiliation,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Party_Affiliation,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Party_Affiliation,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Party_Code,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Party_Code,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Refunds_to_Individuals,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Refunds_to_Individuals,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=Refunds_to_Individuals,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|color=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|color=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|color=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|color=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,O|y=count_*,Q|shape=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Candidate_District,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,Q|y=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=Candidate_District,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Loans_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Loans_from_Candidate,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Other_Loans,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Other_Loans,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Party_Affiliation,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Party_Affiliation,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Party_Code,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Party_Code,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=Party_Code,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,O|y=count_*,Q|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Candidate_Loan_Repayments,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=Candidate_District,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Candidate_State,N|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Candidate_State,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Candidate_State,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Loans_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Loans_from_Candidate,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Other_Loans,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Party_Affiliation,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Party_Affiliation,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Party_Code,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Party_Code,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=Refunds_to_Individuals,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,O|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Contributions_from_Candidate,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=Debts_Owed_By,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=Debts_Owed_By,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=Debts_Owed_By,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=Debts_Owed_By,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=Debts_Owed_By,Q|y=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=Debts_Owed_By,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Candidate_District,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Candidate_District,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Candidate_Loan_Repayments,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Candidate_Loan_Repayments,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Contributions_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=bin_Beginning_Cash,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=bin_Beginning_Cash,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Incumbent_Challenger_Status,N|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Candidate_District,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Candidate_District,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Candidate_Loan_Repayments,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Candidate_Loan_Repayments,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Contributions_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Contributions_from_Candidate,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=bin_Beginning_Cash,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=mean_Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Loans_from_Candidate,O|y=mean_Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Other_Loan_Repayments,O|y=Candidate_Loan_Repayments,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Candidate_District,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Candidate_Loan_Repayments,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Candidate_Loan_Repayments,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Contributions_from_Candidate,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=bin_Beginning_Cash,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Other_Loans,O|y=bin_Beginning_Cash,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_District,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_District,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_District,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_Loan_Repayments,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_Loan_Repayments,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Contributions_from_Candidate,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Contributions_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=bin_Beginning_Cash,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=bin_Beginning_Cash,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=bin_Beginning_Cash,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Party_Affiliation,N|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Candidate_District,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Candidate_District,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Candidate_District,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Candidate_Loan_Repayments,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Contributions_from_Candidate,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Contributions_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=bin_Beginning_Cash,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=bin_Beginning_Cash,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=count_*,Q|color=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=count_*,Q|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=count_*,Q|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=count_*,Q|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=count_*,Q|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=mean_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=mean_Candidate_District,Q-vl.json │ │ │ ├── mark=point|x=Party_Code,O|y=mean_Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Candidate_District,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Candidate_District,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Candidate_Loan_Repayments,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Candidate_Loan_Repayments,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Candidate_Loan_Repayments,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Contributions_from_Candidate,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Contributions_from_Candidate,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Contributions_from_Candidate,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=bin_Beginning_Cash,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=bin_Beginning_Cash,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Refunds_to_Individuals,O|y=bin_Beginning_Cash,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Incumbent_Challenger_Status,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Party_Affiliation,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Party_Affiliation,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Party_Affiliation,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Party_Code,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Party_Code,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Refunds_to_Individuals,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=Refunds_to_Individuals,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|color=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|shape=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=bin_Beginning_Cash,Q|y=count_*,Q|shape=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|color=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Contributions_from_Other_Political_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|detail=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Contributions_from_Party_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_District,O|shape=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|color=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|color=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|color=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|color=year_Coverage_End_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Transfers_from_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|detail=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|shape=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|shape=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|shape=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|shape=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_Loan_Repayments,O|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_State,N|color=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_State,N|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_State,N|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_State,N|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Candidate_State,N|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|color=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|color=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Candidate_Identification,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Candidate_Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|detail=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|shape=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Contributions_from_Candidate,O|shape=Transfers_to_Authorized_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Loans_from_Candidate,O|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Loans_from_Candidate,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Other_Loans,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Other_Loans,O|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Affiliation,N|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Code,O|color=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Code,O|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Code,O|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Code,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Party_Code,O|detail=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Committees,O|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Committees,O|detail=Candidate_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Individuals,O|color=Contributions_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Individuals,O|color=bin_Beginning_Cash,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Refunds_to_Individuals,O|detail=Candidate_District,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|color=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Incumbent_Challenger_Status,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|detail=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|shape=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|shape=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|shape=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|shape=Party_Code,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Beginning_Cash,Q|shape=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=mean_Beginning_Cash,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=mean_Beginning_Cash,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=point|x=mean_Beginning_Cash,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=point|x=mean_Beginning_Cash,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=mean_Beginning_Cash,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=mean_Candidate_District,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=mean_Candidate_District,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=mean_Candidate_District,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=mean_Candidate_District,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=point|x=mean_Candidate_Loan_Repayments,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=mean_Candidate_Loan_Repayments,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=mean_Contributions_from_Candidate,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=mean_Contributions_from_Candidate,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=point|x=mean_Contributions_from_Candidate,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=mean_Debts_Owed_By,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=point|x=mean_Debts_Owed_By,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=point|x=mean_Debts_Owed_By,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=tick|x=Beginning_Cash,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=tick|x=Candidate_District,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=tick|x=Candidate_District,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=tick|x=Candidate_District,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=tick|x=Candidate_District,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=tick|x=Candidate_District,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=tick|x=Candidate_District,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=tick|x=Candidate_Loan_Repayments,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=tick|x=Candidate_Loan_Repayments,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=tick|x=Candidate_Loan_Repayments,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=tick|x=Candidate_Loan_Repayments,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=tick|x=Candidate_Loan_Repayments,Q|y=Refunds_to_Committees,O-vl.json │ │ │ ├── mark=tick|x=Candidate_State,N|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Contributions_from_Candidate,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=tick|x=Contributions_from_Candidate,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=tick|x=Contributions_from_Candidate,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=tick|x=Contributions_from_Candidate,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=tick|x=Contributions_from_Candidate,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Candidate_State,N-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Loans_from_Candidate,O-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Other_Loan_Repayments,O-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Other_Loans,O-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Party_Affiliation,N-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Party_Code,O-vl.json │ │ │ ├── mark=tick|x=Debts_Owed_By,Q|y=Refunds_to_Individuals,O-vl.json │ │ │ ├── mark=tick|x=Incumbent_Challenger_Status,N|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=tick|x=Incumbent_Challenger_Status,N|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Incumbent_Challenger_Status,N|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=tick|x=Incumbent_Challenger_Status,N|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=tick|x=Incumbent_Challenger_Status,N|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=tick|x=Loans_from_Candidate,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=tick|x=Loans_from_Candidate,O|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Loans_from_Candidate,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=tick|x=Loans_from_Candidate,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=tick|x=Other_Loan_Repayments,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=tick|x=Other_Loans,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=tick|x=Other_Loans,O|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Other_Loans,O|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=tick|x=Other_Loans,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=tick|x=Other_Loans,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=tick|x=Party_Affiliation,N|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=tick|x=Party_Affiliation,N|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Party_Affiliation,N|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=tick|x=Party_Affiliation,N|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=tick|x=Party_Affiliation,N|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=tick|x=Party_Code,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=tick|x=Party_Code,O|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Party_Code,O|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=tick|x=Party_Code,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ ├── mark=tick|x=Party_Code,O|y=Debts_Owed_By,Q-vl.json │ │ │ ├── mark=tick|x=Refunds_to_Individuals,O|y=Beginning_Cash,Q-vl.json │ │ │ ├── mark=tick|x=Refunds_to_Individuals,O|y=Candidate_District,Q-vl.json │ │ │ ├── mark=tick|x=Refunds_to_Individuals,O|y=Candidate_Loan_Repayments,Q-vl.json │ │ │ ├── mark=tick|x=Refunds_to_Individuals,O|y=Contributions_from_Candidate,Q-vl.json │ │ │ └── mark=tick|x=Refunds_to_Individuals,O|y=Debts_Owed_By,Q-vl.json │ │ ├── cars1 │ │ │ ├── mark=area|x=Cylinders,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=count_*,Q|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=area|x=Cylinders,O|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Acceleration,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Displacement,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Horsepower,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=area|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=count_*,Q|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=count_*,Q|color=bin_Displacement,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=area|x=year_Year,T|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=count_*,Q|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=Cylinders,O|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=count_*,Q|color=bin_Displacement,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=Origin,N|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Acceleration,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Displacement,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Horsepower,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Cylinders,O|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Cylinders,O|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Cylinders,O|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin,N|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin,N|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Origin,N|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Acceleration,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Displacement,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Horsepower,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|color=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q|color=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=Name,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=Origin,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Year,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Year,T|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=mean_Acceleration,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=mean_Acceleration,Q|y=Origin,N-vl.json │ │ │ ├── mark=bar|x=mean_Acceleration,Q|y=year_Year,T-vl.json │ │ │ ├── mark=bar|x=mean_Displacement,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=mean_Displacement,Q|y=Origin,N-vl.json │ │ │ ├── mark=bar|x=mean_Displacement,Q|y=year_Year,T-vl.json │ │ │ ├── mark=bar|x=mean_Horsepower,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=mean_Horsepower,Q|y=Origin,N-vl.json │ │ │ ├── mark=bar|x=mean_Horsepower,Q|y=year_Year,T-vl.json │ │ │ ├── mark=bar|x=mean_Miles_per_Gallon,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=mean_Miles_per_Gallon,Q|y=Origin,N-vl.json │ │ │ ├── mark=bar|x=mean_Miles_per_Gallon,Q|y=year_Year,T-vl.json │ │ │ ├── mark=bar|x=mean_Weight_in_lbs,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=bar|x=mean_Weight_in_lbs,Q|y=Origin,N-vl.json │ │ │ ├── mark=bar|x=mean_Weight_in_lbs,Q|y=year_Year,T-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=bar|x=year_Year,T|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=count_*,Q|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=line|x=Cylinders,O|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Acceleration,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Displacement,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Horsepower,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=line|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=count_*,Q|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=line|x=year_Year,T|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=Displacement,Q-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Acceleration,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=Displacement,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Acceleration,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Acceleration,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Displacement,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Displacement,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Displacement,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Horsepower,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Horsepower,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Horsepower,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Miles_per_Gallon,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Miles_per_Gallon,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Weight_in_lbs,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=bin_Weight_in_lbs,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=count_*,Q|color=bin_Displacement,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Cylinders,O|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Displacement,Q|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Displacement,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=Displacement,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=Displacement,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=Horsepower,Q|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Horsepower,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=Horsepower,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=Horsepower,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=Miles_per_Gallon,Q|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Miles_per_Gallon,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=Miles_per_Gallon,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=Miles_per_Gallon,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=Origin,N|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=Displacement,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Acceleration,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Acceleration,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Acceleration,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Displacement,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Displacement,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Displacement,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Horsepower,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Horsepower,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Miles_per_Gallon,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Weight_in_lbs,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Weight_in_lbs,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=bin_Weight_in_lbs,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=count_*,Q|color=bin_Displacement,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=Origin,N|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=Weight_in_lbs,Q|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=Weight_in_lbs,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=Weight_in_lbs,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=Weight_in_lbs,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=Cylinders,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=Cylinders,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=Cylinders,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=Origin,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=Origin,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=count_*,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=year_Year,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=year_Year,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Acceleration,Q|y=year_Year,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=Cylinders,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=Cylinders,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=Cylinders,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=Origin,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=Origin,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=Origin,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=count_*,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=year_Year,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=year_Year,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Displacement,Q|y=year_Year,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=Cylinders,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=Cylinders,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=Cylinders,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=Origin,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=Origin,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=Origin,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=count_*,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=year_Year,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Horsepower,Q|y=year_Year,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=Cylinders,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=Cylinders,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=Cylinders,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=Origin,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=Origin,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=count_*,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=year_Year,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=year_Year,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Miles_per_Gallon,Q|y=year_Year,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=Cylinders,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=Cylinders,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=Cylinders,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=Origin,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=Origin,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=count_*,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=year_Year,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=year_Year,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Weight_in_lbs,Q|y=year_Year,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Cylinders,O|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Cylinders,O|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Cylinders,O|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Acceleration,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Displacement,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Horsepower,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Miles_per_Gallon,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|color=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|color=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|color=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=Name,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|detail=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|shape=Cylinders,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Weight_in_lbs,Q|shape=Origin,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Year,T|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Year,T|color=bin_Displacement,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Year,T|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Year,T|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Year,T|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=mean_Acceleration,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=mean_Acceleration,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=mean_Acceleration,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=mean_Displacement,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=mean_Displacement,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=mean_Horsepower,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=mean_Horsepower,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=mean_Miles_per_Gallon,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=mean_Miles_per_Gallon,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=mean_Miles_per_Gallon,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=mean_Weight_in_lbs,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=point|x=mean_Weight_in_lbs,Q|y=Origin,N-vl.json │ │ │ ├── mark=point|x=mean_Weight_in_lbs,Q|y=year_Year,T-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=Acceleration,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=Displacement,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=Horsepower,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Acceleration,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Acceleration,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Acceleration,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Displacement,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Displacement,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Displacement,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Horsepower,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Horsepower,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Horsepower,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Miles_per_Gallon,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Miles_per_Gallon,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Miles_per_Gallon,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Weight_in_lbs,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Weight_in_lbs,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=bin_Weight_in_lbs,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=count_*,Q|color=bin_Acceleration,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=count_*,Q|color=bin_Displacement,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=count_*,Q|color=bin_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=count_*,Q|color=bin_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=count_*,Q|color=bin_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=mean_Acceleration,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=mean_Displacement,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=mean_Horsepower,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=mean_Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=point|x=year_Year,T|y=mean_Weight_in_lbs,Q-vl.json │ │ │ ├── mark=tick|x=Acceleration,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=tick|x=Acceleration,Q|y=Origin,N-vl.json │ │ │ ├── mark=tick|x=Acceleration,Q|y=year_Year,T-vl.json │ │ │ ├── mark=tick|x=Cylinders,O|y=Acceleration,Q-vl.json │ │ │ ├── mark=tick|x=Cylinders,O|y=Displacement,Q-vl.json │ │ │ ├── mark=tick|x=Cylinders,O|y=Horsepower,Q-vl.json │ │ │ ├── mark=tick|x=Cylinders,O|y=Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=tick|x=Cylinders,O|y=Weight_in_lbs,Q-vl.json │ │ │ ├── mark=tick|x=Displacement,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=tick|x=Displacement,Q|y=Origin,N-vl.json │ │ │ ├── mark=tick|x=Displacement,Q|y=year_Year,T-vl.json │ │ │ ├── mark=tick|x=Horsepower,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=tick|x=Horsepower,Q|y=Origin,N-vl.json │ │ │ ├── mark=tick|x=Horsepower,Q|y=year_Year,T-vl.json │ │ │ ├── mark=tick|x=Miles_per_Gallon,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=tick|x=Miles_per_Gallon,Q|y=Origin,N-vl.json │ │ │ ├── mark=tick|x=Miles_per_Gallon,Q|y=year_Year,T-vl.json │ │ │ ├── mark=tick|x=Origin,N|y=Acceleration,Q-vl.json │ │ │ ├── mark=tick|x=Origin,N|y=Displacement,Q-vl.json │ │ │ ├── mark=tick|x=Origin,N|y=Horsepower,Q-vl.json │ │ │ ├── mark=tick|x=Origin,N|y=Miles_per_Gallon,Q-vl.json │ │ │ ├── mark=tick|x=Origin,N|y=Weight_in_lbs,Q-vl.json │ │ │ ├── mark=tick|x=Weight_in_lbs,Q|y=Cylinders,O-vl.json │ │ │ ├── mark=tick|x=Weight_in_lbs,Q|y=Origin,N-vl.json │ │ │ ├── mark=tick|x=Weight_in_lbs,Q|y=year_Year,T-vl.json │ │ │ ├── mark=tick|x=year_Year,T|y=Acceleration,Q-vl.json │ │ │ ├── mark=tick|x=year_Year,T|y=Displacement,Q-vl.json │ │ │ ├── mark=tick|x=year_Year,T|y=Horsepower,Q-vl.json │ │ │ ├── mark=tick|x=year_Year,T|y=Miles_per_Gallon,Q-vl.json │ │ │ └── mark=tick|x=year_Year,T|y=Weight_in_lbs,Q-vl.json │ │ ├── crimea1 │ │ │ ├── mark=area|x=bin_disease,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_disease,Q|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=area|x=bin_disease,Q|y=count_*,Q|detail=other,O-vl.json │ │ │ ├── mark=area|x=bin_disease,Q|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=area|x=bin_disease,Q|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=area|x=other,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=other,O|y=count_*,Q|color=bin_disease,Q-vl.json │ │ │ ├── mark=area|x=other,O|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=area|x=other,O|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=area|x=other,O|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=area|x=wounds,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=wounds,O|y=count_*,Q|color=bin_disease,Q-vl.json │ │ │ ├── mark=area|x=wounds,O|y=count_*,Q|detail=other,O-vl.json │ │ │ ├── mark=area|x=wounds,O|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=area|x=year_date,T|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=year_date,T|y=count_*,Q|color=bin_disease,Q-vl.json │ │ │ ├── mark=area|x=year_date,T|y=count_*,Q|detail=other,O-vl.json │ │ │ ├── mark=area|x=year_date,T|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=area|x=year_date,T|y=mean_disease,Q-vl.json │ │ │ ├── mark=area|x=year_date,T|y=mean_other,Q-vl.json │ │ │ ├── mark=area|x=year_date,T|y=mean_wounds,Q-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q|color=other,O-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q|color=wounds,O-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q|detail=other,O-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=bar|x=bin_disease,Q|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q|color=other,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q|color=wounds,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q|color=year_date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q|detail=other,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q|detail=wounds,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_disease,Q|detail=year_date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=other,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=other,O|color=wounds,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=other,O|color=year_date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=other,O|detail=wounds,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=other,O|detail=year_date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=wounds,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=wounds,O|color=bin_disease,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=wounds,O|color=other,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=wounds,O|color=year_date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=wounds,O|detail=other,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=wounds,O|detail=year_date,T-vl.json │ │ │ ├── mark=bar|x=other,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=other,O|y=count_*,Q|color=bin_disease,Q-vl.json │ │ │ ├── mark=bar|x=other,O|y=count_*,Q|color=wounds,O-vl.json │ │ │ ├── mark=bar|x=other,O|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=bar|x=other,O|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=bar|x=other,O|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=bar|x=wounds,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=wounds,O|y=count_*,Q|color=bin_disease,Q-vl.json │ │ │ ├── mark=bar|x=wounds,O|y=count_*,Q|color=other,O-vl.json │ │ │ ├── mark=bar|x=wounds,O|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=bar|x=wounds,O|y=count_*,Q|detail=other,O-vl.json │ │ │ ├── mark=bar|x=wounds,O|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=line|x=bin_disease,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_disease,Q|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=line|x=bin_disease,Q|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=line|x=bin_disease,Q|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=line|x=other,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=other,O|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=line|x=other,O|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=line|x=wounds,O|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=wounds,O|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=line|x=wounds,O|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=line|x=year_date,T|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=year_date,T|y=count_*,Q|color=bin_disease,Q-vl.json │ │ │ ├── mark=line|x=year_date,T|y=count_*,Q|color=wounds,O-vl.json │ │ │ ├── mark=line|x=year_date,T|y=count_*,Q|detail=wounds,O-vl.json │ │ │ ├── mark=line|x=year_date,T|y=mean_disease,Q-vl.json │ │ │ ├── mark=line|x=year_date,T|y=mean_other,Q-vl.json │ │ │ ├── mark=line|x=year_date,T|y=mean_wounds,Q-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=count_*,Q|color=year_date,T-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=count_*,Q|detail=year_date,T-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=other,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=wounds,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=wounds,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=wounds,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_disease,Q|y=year_date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_disease,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_disease,Q|color=year_date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_disease,Q|detail=year_date,T-vl.json │ │ │ ├── mark=point|x=disease,Q|y=other,Q-vl.json │ │ │ ├── mark=point|x=disease,Q|y=wounds,Q-vl.json │ │ │ ├── mark=point|x=disease,Q|y=year_date,T-vl.json │ │ │ ├── mark=point|x=other,O|y=bin_disease,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=other,O|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=other,O|y=wounds,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=other,O|y=year_date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=other,Q|y=disease,Q-vl.json │ │ │ ├── mark=point|x=other,Q|y=wounds,Q-vl.json │ │ │ ├── mark=point|x=other,Q|y=year_date,T-vl.json │ │ │ ├── mark=point|x=wounds,O|y=bin_disease,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=wounds,O|y=bin_disease,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=wounds,O|y=bin_disease,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=wounds,O|y=other,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=wounds,Q|y=disease,Q-vl.json │ │ │ ├── mark=point|x=wounds,Q|y=other,Q-vl.json │ │ │ ├── mark=point|x=year_date,T|y=other,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_date,T|y=other,O|size=count_*,Q-vl.json │ │ │ └── mark=point|x=year_date,T|y=wounds,Q-vl.json │ │ ├── driving1 │ │ │ ├── mark=area|x=bin_gas,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_gas,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=area|x=bin_gas,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=area|x=bin_gas,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=area|x=bin_miles,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_miles,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=area|x=bin_miles,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=area|x=bin_miles,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=area|x=bin_year,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_year,Q|y=count_*,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=area|x=bin_year,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=area|x=bin_year,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=bin_gas,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_gas,Q|y=count_*,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=bar|x=bin_gas,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=bar|x=bin_gas,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=bar|x=bin_gas,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=bin_miles,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_miles,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=bar|x=bin_miles,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=bar|x=bin_miles,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=bin_year,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_year,Q|y=count_*,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=bar|x=bin_year,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=bar|x=bin_year,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_gas,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_gas,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_gas,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_gas,Q|color=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_gas,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_miles,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_miles,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_miles,Q|color=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_miles,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_year,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_year,Q|color=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_year,Q|detail=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=side,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=side,N|color=bin_miles,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=side,N|color=bin_year,Q-vl.json │ │ │ ├── mark=bar|x=mean_gas,Q|y=side,N-vl.json │ │ │ ├── mark=bar|x=mean_miles,Q|y=side,N-vl.json │ │ │ ├── mark=bar|x=mean_year,Q|y=side,N-vl.json │ │ │ ├── mark=bar|x=side,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=side,N|y=mean_gas,Q-vl.json │ │ │ ├── mark=bar|x=side,N|y=mean_miles,Q-vl.json │ │ │ ├── mark=bar|x=side,N|y=mean_year,Q-vl.json │ │ │ ├── mark=line|x=bin_gas,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_gas,Q|y=count_*,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=line|x=bin_gas,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=line|x=bin_gas,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=line|x=bin_gas,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=line|x=bin_miles,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_miles,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=line|x=bin_miles,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=line|x=bin_miles,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=bin_miles,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=bin_miles,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=bin_miles,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=bin_year,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=bin_year,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=bin_year,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=count_*,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=count_*,Q|shape=side,N-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=side,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=side,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_gas,Q|y=side,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=bin_gas,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=bin_gas,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=bin_gas,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=bin_year,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=bin_year,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=bin_year,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=count_*,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=count_*,Q|shape=side,N-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=side,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_miles,Q|y=side,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=bin_gas,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=bin_gas,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=bin_gas,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=bin_miles,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=bin_miles,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=bin_miles,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=count_*,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=count_*,Q|color=side,N-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=count_*,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=count_*,Q|shape=side,N-vl.json │ │ │ ├── mark=point|x=bin_year,Q|y=side,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_gas,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_gas,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_gas,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_gas,Q|color=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_gas,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_gas,Q|shape=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_miles,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_miles,Q|color=bin_year,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_miles,Q|color=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_miles,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_miles,Q|shape=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_year,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_year,Q|color=bin_miles,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_year,Q|color=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_year,Q|detail=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_year,Q|shape=side,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=side,N-vl.json │ │ │ ├── mark=point|x=gas,Q|y=miles,Q-vl.json │ │ │ ├── mark=point|x=gas,Q|y=side,N-vl.json │ │ │ ├── mark=point|x=gas,Q|y=year,Q-vl.json │ │ │ ├── mark=point|x=mean_gas,Q|y=side,N-vl.json │ │ │ ├── mark=point|x=mean_miles,Q|y=side,N-vl.json │ │ │ ├── mark=point|x=miles,Q|y=gas,Q-vl.json │ │ │ ├── mark=point|x=miles,Q|y=side,N-vl.json │ │ │ ├── mark=point|x=miles,Q|y=year,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=bin_gas,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=bin_gas,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=bin_gas,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=bin_miles,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=bin_miles,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=bin_year,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=gas,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=mean_gas,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=mean_miles,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=mean_year,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=miles,Q-vl.json │ │ │ ├── mark=point|x=side,N|y=year,Q-vl.json │ │ │ ├── mark=point|x=year,Q|y=gas,Q-vl.json │ │ │ ├── mark=point|x=year,Q|y=miles,Q-vl.json │ │ │ ├── mark=point|x=year,Q|y=side,N-vl.json │ │ │ ├── mark=tick|x=gas,Q|y=side,N-vl.json │ │ │ ├── mark=tick|x=miles,Q|y=side,N-vl.json │ │ │ ├── mark=tick|x=side,N|y=gas,Q-vl.json │ │ │ ├── mark=tick|x=side,N|y=miles,Q-vl.json │ │ │ ├── mark=tick|x=side,N|y=year,Q-vl.json │ │ │ └── mark=tick|x=year,Q|y=side,N-vl.json │ │ ├── iris1 │ │ │ ├── mark=area|x=bin_petalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_petalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=area|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=area|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=area|x=bin_petalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=area|x=bin_petalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=area|x=bin_petalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_petalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=area|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=area|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=area|x=bin_petalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=area|x=bin_petalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=area|x=bin_sepalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=area|x=bin_sepalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=area|x=bin_sepalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=area|x=bin_sepalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=area|x=bin_sepalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=bin_petalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=bin_petalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=bin_petalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=bin_petalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=bin_petalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=bin_sepalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=bin_sepalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=bin_sepalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=bin_sepalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=bin_sepalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalLength,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalLength,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalLength,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalLength,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalLength,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalWidth,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalWidth,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalWidth,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalWidth,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_petalWidth,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalLength,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalLength,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalLength,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalLength,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalLength,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalWidth,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalWidth,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalWidth,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalWidth,Q|color=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_sepalWidth,Q|detail=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=species,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=species,N|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=species,N|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=species,N|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=species,N|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=bar|x=mean_petalLength,Q|y=species,N-vl.json │ │ │ ├── mark=bar|x=mean_petalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=bar|x=mean_sepalLength,Q|y=species,N-vl.json │ │ │ ├── mark=bar|x=mean_sepalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=bar|x=species,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=mean_petalLength,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=mean_petalWidth,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=mean_sepalLength,Q-vl.json │ │ │ ├── mark=bar|x=species,N|y=mean_sepalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_petalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_petalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=line|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_petalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=line|x=bin_petalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=line|x=bin_petalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_petalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=line|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=line|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_petalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=line|x=bin_petalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=line|x=bin_sepalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=line|x=bin_sepalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=line|x=bin_sepalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=line|x=bin_sepalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=line|x=bin_sepalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_petalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_petalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_petalWidth,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_sepalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_sepalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_sepalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_sepalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_sepalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=bin_sepalWidth,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=count_*,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalLength,Q|y=species,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_petalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_petalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_petalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_sepalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_sepalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_sepalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_sepalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_sepalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=bin_sepalWidth,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=count_*,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=species,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=species,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_petalWidth,Q|y=species,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_petalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_petalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_petalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_petalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_petalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_petalWidth,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_sepalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_sepalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=bin_sepalWidth,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=count_*,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=species,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=species,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalLength,Q|y=species,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_petalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_petalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_petalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_petalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_petalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_petalWidth,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_sepalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_sepalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=bin_sepalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=count_*,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=bin_sepalWidth,Q|y=species,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalLength,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_petalWidth,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalLength,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q|color=bin_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q|color=bin_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q|color=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q|detail=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_sepalWidth,Q|shape=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=species,N|color=bin_petalLength,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=species,N|color=bin_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=mean_petalLength,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=mean_petalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=mean_sepalLength,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=mean_sepalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=petalLength,Q|y=petalWidth,Q-vl.json │ │ │ ├── mark=point|x=petalLength,Q|y=sepalLength,Q-vl.json │ │ │ ├── mark=point|x=petalLength,Q|y=sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=petalLength,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=petalWidth,Q|y=petalLength,Q-vl.json │ │ │ ├── mark=point|x=petalWidth,Q|y=sepalLength,Q-vl.json │ │ │ ├── mark=point|x=petalWidth,Q|y=sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=petalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=sepalLength,Q|y=petalLength,Q-vl.json │ │ │ ├── mark=point|x=sepalLength,Q|y=petalWidth,Q-vl.json │ │ │ ├── mark=point|x=sepalLength,Q|y=sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=sepalLength,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=sepalWidth,Q|y=petalLength,Q-vl.json │ │ │ ├── mark=point|x=sepalWidth,Q|y=petalWidth,Q-vl.json │ │ │ ├── mark=point|x=sepalWidth,Q|y=sepalLength,Q-vl.json │ │ │ ├── mark=point|x=sepalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_petalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_petalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_petalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_sepalLength,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_sepalLength,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_sepalLength,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_sepalWidth,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=bin_sepalWidth,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=mean_petalLength,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=mean_petalWidth,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=mean_sepalLength,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=mean_sepalWidth,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=petalLength,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=petalWidth,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=sepalLength,Q-vl.json │ │ │ ├── mark=point|x=species,N|y=sepalWidth,Q-vl.json │ │ │ ├── mark=tick|x=petalLength,Q|y=species,N-vl.json │ │ │ ├── mark=tick|x=petalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=tick|x=sepalLength,Q|y=species,N-vl.json │ │ │ ├── mark=tick|x=sepalWidth,Q|y=species,N-vl.json │ │ │ ├── mark=tick|x=species,N|y=petalLength,Q-vl.json │ │ │ ├── mark=tick|x=species,N|y=petalWidth,Q-vl.json │ │ │ ├── mark=tick|x=species,N|y=sepalLength,Q-vl.json │ │ │ └── mark=tick|x=species,N|y=sepalWidth,Q-vl.json │ │ ├── jobs1 │ │ │ ├── mark=area|x=bin_count,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_count,Q|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=area|x=bin_count,Q|y=count_*,Q|detail=sex,N-vl.json │ │ │ ├── mark=area|x=bin_count,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=area|x=bin_perc,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_perc,Q|y=count_*,Q|color=bin_count,Q-vl.json │ │ │ ├── mark=area|x=bin_perc,Q|y=count_*,Q|color=sex,N-vl.json │ │ │ ├── mark=area|x=bin_perc,Q|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=area|x=bin_perc,Q|y=count_*,Q|detail=sex,N-vl.json │ │ │ ├── mark=area|x=bin_perc,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|color=bin_count,Q-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|color=sex,N-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|detail=sex,N-vl.json │ │ │ ├── mark=bar|x=bin_count,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_count,Q|y=count_*,Q|color=sex,N-vl.json │ │ │ ├── mark=bar|x=bin_count,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=bin_count,Q|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=bar|x=bin_count,Q|y=count_*,Q|detail=sex,N-vl.json │ │ │ ├── mark=bar|x=bin_count,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q|color=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q|color=sex,N-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q|detail=sex,N-vl.json │ │ │ ├── mark=bar|x=bin_perc,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_count,Q|color=sex,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_count,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_count,Q|detail=job,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_count,Q|detail=sex,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_count,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q|color=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q|color=sex,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q|detail=job,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q|detail=sex,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_perc,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,N|color=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,N|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,N|detail=job,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,N|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|color=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|color=sex,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|detail=job,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|detail=sex,N-vl.json │ │ │ ├── mark=bar|x=mean_count,Q|y=sex,N-vl.json │ │ │ ├── mark=bar|x=mean_perc,Q|y=sex,N-vl.json │ │ │ ├── mark=bar|x=mean_year,Q|y=sex,N-vl.json │ │ │ ├── mark=bar|x=sex,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=sex,N|y=count_*,Q|color=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=sex,N|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=bar|x=sex,N|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=sex,N|y=mean_count,Q-vl.json │ │ │ ├── mark=bar|x=sex,N|y=mean_perc,Q-vl.json │ │ │ ├── mark=bar|x=sex,N|y=mean_year,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=bin_count,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=sex,N-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|detail=job,N-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|detail=sex,N-vl.json │ │ │ ├── mark=point|x=bin_count,Q|y=bin_perc,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_count,Q|y=bin_perc,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_count,Q|y=sex,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_count,Q|y=year,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_count,Q|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_count,Q|y=year,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=bin_count,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=bin_count,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=bin_count,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=sex,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=sex,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=year,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_perc,Q|y=year,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=count,Q|y=perc,Q-vl.json │ │ │ ├── mark=point|x=count,Q|y=sex,N-vl.json │ │ │ ├── mark=point|x=count,Q|y=year,Q-vl.json │ │ │ ├── mark=point|x=perc,Q|y=count,Q-vl.json │ │ │ ├── mark=point|x=perc,Q|y=sex,N-vl.json │ │ │ ├── mark=point|x=perc,Q|y=year,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=bin_count,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=bin_perc,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=bin_perc,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=bin_perc,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=count,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=perc,Q-vl.json │ │ │ ├── mark=point|x=sex,N|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_count,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_count,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_perc,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_perc,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=sex,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,Q|y=count,Q-vl.json │ │ │ ├── mark=point|x=year,Q|y=perc,Q-vl.json │ │ │ ├── mark=tick|x=count,Q|y=sex,N-vl.json │ │ │ ├── mark=tick|x=perc,Q|y=sex,N-vl.json │ │ │ ├── mark=tick|x=sex,N|y=count,Q-vl.json │ │ │ ├── mark=tick|x=sex,N|y=perc,Q-vl.json │ │ │ └── mark=tick|x=sex,N|y=year,Q-vl.json │ │ ├── movies1 │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=area|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=area|x=bin_Production_Budget,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=area|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=area|x=bin_Running_Time_min,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Running_Time_min,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_US_DVD_Sales,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_US_Gross,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=area|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=area|x=year_Release_Date,T|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=Creative_Type,N|y=mean_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=MPAA_Rating,N|y=mean_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=count_*,Q|color=bin_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=Major_Genre,N|y=mean_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=Source,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=bin_Production_Budget,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_US_Gross,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=bin_Worldwide_Gross,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N|color=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N|color=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N|color=bin_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Creative_Type,N|color=bin_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=MPAA_Rating,N|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=MPAA_Rating,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=MPAA_Rating,N|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Major_Genre,N|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Major_Genre,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Major_Genre,N|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Major_Genre,N|color=bin_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Source,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Source,N|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=Source,N|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|color=Source,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_IMDB_Votes,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Production_Budget,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Source,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Title,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_DVD_Sales,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_DVD_Sales,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_DVD_Sales,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_DVD_Sales,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_DVD_Sales,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_Gross,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_Gross,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_Gross,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_Gross,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_US_Gross,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q|detail=Director,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_Worldwide_Gross,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Release_Date,T|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Release_Date,T|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year_Release_Date,T|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Votes,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Votes,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Votes,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Votes,Q|y=Source,N-vl.json │ │ │ ├── mark=bar|x=mean_IMDB_Votes,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Production_Budget,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_Production_Budget,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_Production_Budget,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_Production_Budget,Q|y=Source,N-vl.json │ │ │ ├── mark=bar|x=mean_Production_Budget,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Rotten_Tomatoes_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_Rotten_Tomatoes_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_Rotten_Tomatoes_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=bar|x=mean_Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_Running_Time_min,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_Running_Time_min,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_Running_Time_min,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_Running_Time_min,Q|y=Source,N-vl.json │ │ │ ├── mark=bar|x=mean_Running_Time_min,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=bar|x=mean_US_DVD_Sales,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_US_DVD_Sales,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_US_DVD_Sales,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_US_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_US_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_US_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=mean_Worldwide_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=bar|x=mean_Worldwide_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=bar|x=mean_Worldwide_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=bar|x=year_Release_Date,T|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=line|x=bin_IMDB_Votes,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=line|x=bin_Production_Budget,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=line|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=line|x=bin_Running_Time_min,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_Running_Time_min,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=line|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=line|x=bin_US_Gross,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=line|x=year_Release_Date,T|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=US_Gross,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_IMDB_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_IMDB_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_IMDB_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_IMDB_Votes,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_IMDB_Votes,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_IMDB_Votes,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Production_Budget,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Production_Budget,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Production_Budget,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Rotten_Tomatoes_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Rotten_Tomatoes_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Rotten_Tomatoes_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Running_Time_min,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Running_Time_min,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Running_Time_min,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_US_DVD_Sales,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_US_DVD_Sales,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_US_DVD_Sales,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_US_Gross,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_US_Gross,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_US_Gross,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Worldwide_Gross,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=bin_Worldwide_Gross,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q|color=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q|color=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q|color=bin_US_Gross,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=count_*,Q|color=bin_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_US_Gross,Q-vl.json │ │ │ ├── mark=point|x=Creative_Type,N|y=mean_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=IMDB_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=IMDB_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=IMDB_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=IMDB_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=IMDB_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=IMDB_Votes,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=IMDB_Votes,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=IMDB_Votes,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=IMDB_Votes,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=IMDB_Votes,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=US_Gross,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_IMDB_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_IMDB_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_IMDB_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_IMDB_Votes,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_IMDB_Votes,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_IMDB_Votes,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_Production_Budget,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_Production_Budget,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_Production_Budget,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_Rotten_Tomatoes_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_Rotten_Tomatoes_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=bin_Rotten_Tomatoes_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_US_Gross,Q-vl.json │ │ │ ├── mark=point|x=MPAA_Rating,N|y=mean_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=US_Gross,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_IMDB_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_IMDB_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_IMDB_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_IMDB_Votes,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_IMDB_Votes,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_IMDB_Votes,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Production_Budget,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Production_Budget,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Production_Budget,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Rotten_Tomatoes_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Rotten_Tomatoes_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Running_Time_min,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Running_Time_min,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Running_Time_min,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_US_DVD_Sales,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_US_DVD_Sales,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_US_DVD_Sales,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_US_Gross,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_US_Gross,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_US_Gross,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Worldwide_Gross,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=bin_Worldwide_Gross,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=count_*,Q|color=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=count_*,Q|color=bin_US_Gross,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_US_Gross,Q-vl.json │ │ │ ├── mark=point|x=Major_Genre,N|y=mean_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=Production_Budget,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=Production_Budget,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=Production_Budget,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=Production_Budget,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=Production_Budget,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=Rotten_Tomatoes_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=Rotten_Tomatoes_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=Rotten_Tomatoes_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=Running_Time_min,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=Running_Time_min,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=Running_Time_min,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=Running_Time_min,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=Running_Time_min,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=Source,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_IMDB_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_IMDB_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_IMDB_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_IMDB_Votes,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_IMDB_Votes,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_IMDB_Votes,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_Production_Budget,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_Production_Budget,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_Production_Budget,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_Rotten_Tomatoes_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_Rotten_Tomatoes_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=bin_Rotten_Tomatoes_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=Source,N|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=US_DVD_Sales,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=US_DVD_Sales,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=US_DVD_Sales,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=US_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=US_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=US_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=Worldwide_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=Worldwide_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=Worldwide_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=MPAA_Rating,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=MPAA_Rating,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=MPAA_Rating,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Source,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Source,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=Source,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=year_Release_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=year_Release_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Rating,Q|y=year_Release_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=MPAA_Rating,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=MPAA_Rating,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=MPAA_Rating,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Source,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Source,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=Source,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=year_Release_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=year_Release_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_IMDB_Votes,Q|y=year_Release_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=MPAA_Rating,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=MPAA_Rating,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=MPAA_Rating,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Source,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Source,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=Source,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=Title,N-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=year_Release_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=year_Release_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Production_Budget,Q|y=year_Release_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Source,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Source,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=Source,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|color=Source,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=Source,N-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=count_*,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=bin_Running_Time_min,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=bin_US_DVD_Sales,Q|y=count_*,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=bin_US_Gross,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_Gross,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_Gross,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_Gross,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_Gross,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_US_Gross,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Worldwide_Gross,Q|y=Creative_Type,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Worldwide_Gross,Q|y=Creative_Type,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Worldwide_Gross,Q|y=Creative_Type,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Worldwide_Gross,Q|y=Major_Genre,N|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Worldwide_Gross,Q|y=Major_Genre,N|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_Worldwide_Gross,Q|y=Major_Genre,N|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_US_Gross,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Creative_Type,N|color=bin_Worldwide_Gross,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=MPAA_Rating,N|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=MPAA_Rating,N|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=MPAA_Rating,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=MPAA_Rating,N|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Major_Genre,N|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Major_Genre,N|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Major_Genre,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Major_Genre,N|color=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Major_Genre,N|color=bin_US_DVD_Sales,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Source,N|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=Source,N|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|color=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=Title,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_IMDB_Rating,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|color=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=Title,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Production_Budget,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|color=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|color=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Director,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=Source,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Rotten_Tomatoes_Rating,Q|detail=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Running_Time_min,Q|color=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Running_Time_min,Q|color=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Distributor,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_Running_Time_min,Q|detail=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Release_Date,T|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Release_Date,T|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=year_Release_Date,T|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Votes,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Votes,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Votes,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Votes,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=mean_IMDB_Votes,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=mean_Production_Budget,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_Production_Budget,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_Production_Budget,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_Production_Budget,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=mean_Production_Budget,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=mean_Rotten_Tomatoes_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_Rotten_Tomatoes_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_Rotten_Tomatoes_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=mean_Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=mean_Running_Time_min,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_Running_Time_min,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_Running_Time_min,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_Running_Time_min,Q|y=Source,N-vl.json │ │ │ ├── mark=point|x=mean_Running_Time_min,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=point|x=mean_US_DVD_Sales,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_US_DVD_Sales,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_US_DVD_Sales,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_US_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_US_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_US_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=mean_Worldwide_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=point|x=mean_Worldwide_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=point|x=mean_Worldwide_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_IMDB_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_IMDB_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_IMDB_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_IMDB_Votes,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_IMDB_Votes,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_IMDB_Votes,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_Production_Budget,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_Production_Budget,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_Production_Budget,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_Rotten_Tomatoes_Rating,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_Rotten_Tomatoes_Rating,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=bin_Rotten_Tomatoes_Rating,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=count_*,Q|color=bin_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=count_*,Q|color=bin_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=count_*,Q|color=bin_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=mean_IMDB_Rating,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=mean_IMDB_Votes,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=mean_Production_Budget,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=mean_Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=point|x=year_Release_Date,T|y=mean_Running_Time_min,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=US_DVD_Sales,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=US_Gross,Q-vl.json │ │ │ ├── mark=tick|x=Creative_Type,N|y=Worldwide_Gross,Q-vl.json │ │ │ ├── mark=tick|x=IMDB_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=tick|x=IMDB_Votes,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Votes,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Votes,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Votes,Q|y=Source,N-vl.json │ │ │ ├── mark=tick|x=IMDB_Votes,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=US_DVD_Sales,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=US_Gross,Q-vl.json │ │ │ ├── mark=tick|x=MPAA_Rating,N|y=Worldwide_Gross,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=US_DVD_Sales,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=US_Gross,Q-vl.json │ │ │ ├── mark=tick|x=Major_Genre,N|y=Worldwide_Gross,Q-vl.json │ │ │ ├── mark=tick|x=Production_Budget,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=Production_Budget,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=Production_Budget,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=Production_Budget,Q|y=Source,N-vl.json │ │ │ ├── mark=tick|x=Production_Budget,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=tick|x=Rotten_Tomatoes_Rating,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=Rotten_Tomatoes_Rating,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=Rotten_Tomatoes_Rating,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=Rotten_Tomatoes_Rating,Q|y=Source,N-vl.json │ │ │ ├── mark=tick|x=Rotten_Tomatoes_Rating,Q|y=year_Release_Date,T-vl.json │ │ │ ├── mark=tick|x=Running_Time_min,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=Running_Time_min,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=Running_Time_min,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=Running_Time_min,Q|y=Source,N-vl.json │ │ │ ├── mark=tick|x=Source,N|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=tick|x=Source,N|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=tick|x=Source,N|y=Production_Budget,Q-vl.json │ │ │ ├── mark=tick|x=Source,N|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ ├── mark=tick|x=Source,N|y=Running_Time_min,Q-vl.json │ │ │ ├── mark=tick|x=US_DVD_Sales,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=US_DVD_Sales,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=US_DVD_Sales,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=US_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=US_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=US_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=Worldwide_Gross,Q|y=Creative_Type,N-vl.json │ │ │ ├── mark=tick|x=Worldwide_Gross,Q|y=MPAA_Rating,N-vl.json │ │ │ ├── mark=tick|x=Worldwide_Gross,Q|y=Major_Genre,N-vl.json │ │ │ ├── mark=tick|x=year_Release_Date,T|y=IMDB_Rating,Q-vl.json │ │ │ ├── mark=tick|x=year_Release_Date,T|y=IMDB_Votes,Q-vl.json │ │ │ ├── mark=tick|x=year_Release_Date,T|y=Production_Budget,Q-vl.json │ │ │ ├── mark=tick|x=year_Release_Date,T|y=Rotten_Tomatoes_Rating,Q-vl.json │ │ │ └── mark=tick|x=year_Release_Date,T|y=Running_Time_min,Q-vl.json │ │ └── population1 │ │ │ ├── mark=area|x=age,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=age,O|y=count_*,Q|color=bin_people,Q-vl.json │ │ │ ├── mark=area|x=age,O|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=area|x=age,O|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=area|x=age,O|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=area|x=age,O|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=area|x=bin_people,Q|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=bin_people,Q|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=area|x=bin_people,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=area|x=bin_people,Q|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=area|x=bin_people,Q|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=area|x=bin_people,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=area|x=sex,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=sex,O|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=area|x=sex,O|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=area|x=sex,O|y=mean_age,Q-vl.json │ │ │ ├── mark=area|x=sex,O|y=mean_people,Q-vl.json │ │ │ ├── mark=area|x=sex,O|y=mean_year,Q-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|color=bin_people,Q-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=area|x=year,O|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=bar|x=age,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=age,O|y=count_*,Q|color=bin_people,Q-vl.json │ │ │ ├── mark=bar|x=age,O|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=bar|x=age,O|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=age,O|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=bar|x=age,O|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=bin_people,Q|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=bin_people,Q|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=bar|x=bin_people,Q|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=bar|x=bin_people,Q|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=bar|x=bin_people,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=age,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=age,O|color=bin_people,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=age,O|color=sex,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=age,O|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=age,O|detail=sex,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=age,O|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q|color=age,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q|color=sex,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q|detail=age,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q|detail=sex,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=bin_people,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,O|color=bin_people,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,O|detail=age,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=sex,O|detail=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|color=bin_people,Q-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|color=sex,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|detail=age,O-vl.json │ │ │ ├── mark=bar|x=count_*,Q|y=year,O|detail=sex,O-vl.json │ │ │ ├── mark=bar|x=mean_age,Q|y=sex,O-vl.json │ │ │ ├── mark=bar|x=mean_people,Q|y=sex,O-vl.json │ │ │ ├── mark=bar|x=mean_year,Q|y=sex,O-vl.json │ │ │ ├── mark=bar|x=sex,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=sex,O|y=count_*,Q|color=age,O-vl.json │ │ │ ├── mark=bar|x=sex,O|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=bar|x=sex,O|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=bar|x=sex,O|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=bar|x=sex,O|y=mean_age,Q-vl.json │ │ │ ├── mark=bar|x=sex,O|y=mean_people,Q-vl.json │ │ │ ├── mark=bar|x=sex,O|y=mean_year,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=age,O-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=bin_people,Q-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=bar|x=year,O|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=line|x=bin_people,Q|y=count_*,Q-vl.json │ │ │ ├── mark=line|x=bin_people,Q|y=count_*,Q|color=age,O-vl.json │ │ │ ├── mark=line|x=bin_people,Q|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=line|x=bin_people,Q|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=line|x=bin_people,Q|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=line|x=bin_people,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=point|x=age,O|y=bin_people,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=age,O|y=bin_people,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=age,O|y=sex,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=age,O|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=age,Q|y=people,Q-vl.json │ │ │ ├── mark=point|x=age,Q|y=sex,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=age,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=age,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=age,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|color=age,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|color=sex,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|color=year,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|detail=age,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|detail=sex,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|detail=year,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=count_*,Q|shape=sex,O-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=sex,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=sex,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=sex,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=year,O|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=bin_people,Q|y=year,O|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q|color=sex,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q|color=year,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q|detail=age,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q|detail=sex,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q|detail=year,O-vl.json │ │ │ ├── mark=point|x=count_*,Q|y=bin_people,Q|shape=sex,O-vl.json │ │ │ ├── mark=point|x=people,Q|y=age,Q-vl.json │ │ │ ├── mark=point|x=people,Q|y=sex,O-vl.json │ │ │ ├── mark=point|x=people,Q|y=year,Q-vl.json │ │ │ ├── mark=point|x=sex,O|y=age,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=sex,O|y=age,Q-vl.json │ │ │ ├── mark=point|x=sex,O|y=bin_people,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=sex,O|y=people,Q-vl.json │ │ │ ├── mark=point|x=sex,O|y=year,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=age,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_people,Q|color=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_people,Q|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=bin_people,Q|size=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,O|y=sex,O|detail=count_*,Q-vl.json │ │ │ ├── mark=point|x=year,Q|y=people,Q-vl.json │ │ │ ├── mark=tick|x=age,Q|y=sex,O-vl.json │ │ │ ├── mark=tick|x=people,Q|y=sex,O-vl.json │ │ │ ├── mark=tick|x=sex,O|y=age,Q-vl.json │ │ │ ├── mark=tick|x=sex,O|y=people,Q-vl.json │ │ │ └── mark=tick|x=sex,O|y=year,Q-vl.json │ └── examplesdata │ │ ├── airports.json │ │ ├── anscombe.json │ │ ├── barley.json │ │ ├── birdstrikes.json │ │ ├── budget.json │ │ ├── budgets.json │ │ ├── burtin.json │ │ ├── cars.json │ │ ├── climate.json │ │ ├── co2-concentration.json │ │ ├── countries.json │ │ ├── crimea.json │ │ ├── disasters.json │ │ ├── driving.json │ │ ├── earthquakes.json │ │ ├── flare-dependencies.json │ │ ├── flare.json │ │ ├── flights-10k.json │ │ ├── flights-200k.json │ │ ├── flights-20k.json │ │ ├── flights-2k.json │ │ ├── flights-3m.json │ │ ├── flights-5k.json │ │ ├── flights-airport.json │ │ ├── gapminder-health-income.json │ │ ├── gapminder.json │ │ ├── github.json │ │ ├── graticule.json │ │ ├── income.json │ │ ├── iris.json │ │ ├── jobs.json │ │ ├── londonBoroughs.json │ │ ├── londonCentroids.json │ │ ├── londonTubeLines.json │ │ ├── lookup_groups.json │ │ ├── lookup_people.json │ │ ├── miserables.json │ │ ├── monarchs.json │ │ ├── movies.json │ │ ├── normal-2d.json │ │ ├── obesity.json │ │ ├── points.json │ │ ├── population.json │ │ ├── population_engineers_hurricanes.json │ │ ├── seattle-temps.json │ │ ├── seattle-weather.json │ │ ├── sf-temps.json │ │ ├── sp500.json │ │ ├── stocks.json │ │ ├── udistrict.json │ │ ├── unemployment-across-industries.json │ │ ├── unemployment.tsv │ │ ├── us-10m.json │ │ ├── us-state-capitals.json │ │ ├── weather.json │ │ ├── weball26.json │ │ ├── wheat.json │ │ ├── world-110m.json │ │ └── zipcodes.json ├── nvBench │ ├── .gitignore │ ├── README.md │ ├── save.py │ └── vega │ │ ├── vega_0001.vg.json │ │ ├── vega_0002.vg.json │ │ ├── vega_0003.vg.json │ │ ├── vega_0004.vg.json │ │ ├── vega_0005.vg.json │ │ ├── vega_0006.vg.json │ │ ├── vega_0007.vg.json │ │ ├── vega_0008.vg.json │ │ ├── vega_0009.vg.json │ │ ├── vega_0010.vg.json │ │ ├── vega_0011.vg.json │ │ ├── vega_0012.vg.json │ │ ├── vega_0013.vg.json │ │ ├── vega_0014.vg.json │ │ ├── vega_0015.vg.json │ │ ├── vega_0016.vg.json │ │ ├── vega_0017.vg.json │ │ ├── vega_0018.vg.json │ │ ├── vega_0019.vg.json │ │ ├── vega_0020.vg.json │ │ ├── vega_0021.vg.json │ │ ├── vega_0022.vg.json │ │ ├── vega_0023.vg.json │ │ ├── vega_0024.vg.json │ │ ├── vega_0025.vg.json │ │ ├── vega_0026.vg.json │ │ ├── vega_0027.vg.json │ │ ├── vega_0028.vg.json │ │ ├── vega_0029.vg.json │ │ ├── vega_0030.vg.json │ │ ├── vega_0031.vg.json │ │ ├── vega_0032.vg.json │ │ ├── vega_0033.vg.json │ │ ├── vega_0034.vg.json │ │ ├── vega_0035.vg.json │ │ ├── vega_0036.vg.json │ │ ├── vega_0037.vg.json │ │ ├── vega_0038.vg.json │ │ ├── vega_0039.vg.json │ │ ├── vega_0040.vg.json │ │ ├── vega_0041.vg.json │ │ ├── vega_0042.vg.json │ │ ├── vega_0043.vg.json │ │ ├── vega_0044.vg.json │ │ ├── vega_0045.vg.json │ │ ├── vega_0046.vg.json │ │ ├── vega_0047.vg.json │ │ ├── vega_0048.vg.json │ │ ├── vega_0049.vg.json │ │ ├── vega_0050.vg.json │ │ ├── vega_0051.vg.json │ │ ├── vega_0052.vg.json │ │ ├── vega_0053.vg.json │ │ ├── vega_0054.vg.json │ │ ├── vega_0055.vg.json │ │ ├── vega_0056.vg.json │ │ ├── vega_0057.vg.json │ │ ├── vega_0058.vg.json │ │ ├── vega_0059.vg.json │ │ ├── vega_0060.vg.json │ │ ├── vega_0061.vg.json │ │ ├── vega_0062.vg.json │ │ ├── vega_0063.vg.json │ │ ├── vega_0064.vg.json │ │ ├── vega_0065.vg.json │ │ ├── vega_0066.vg.json │ │ ├── vega_0067.vg.json │ │ ├── vega_0068.vg.json │ │ ├── vega_0069.vg.json │ │ ├── vega_0070.vg.json │ │ ├── vega_0071.vg.json │ │ ├── vega_0072.vg.json │ │ ├── vega_0073.vg.json │ │ ├── vega_0074.vg.json │ │ ├── vega_0075.vg.json │ │ ├── vega_0076.vg.json │ │ ├── vega_0077.vg.json │ │ ├── vega_0078.vg.json │ │ ├── vega_0079.vg.json │ │ ├── vega_0080.vg.json │ │ ├── vega_0081.vg.json │ │ ├── vega_0082.vg.json │ │ ├── vega_0083.vg.json │ │ ├── vega_0084.vg.json │ │ ├── vega_0085.vg.json │ │ ├── vega_0086.vg.json │ │ ├── vega_0087.vg.json │ │ ├── vega_0088.vg.json │ │ ├── vega_0089.vg.json │ │ ├── vega_0090.vg.json │ │ ├── vega_0091.vg.json │ │ ├── vega_0092.vg.json │ │ ├── vega_0093.vg.json │ │ ├── vega_0094.vg.json │ │ ├── vega_0095.vg.json │ │ ├── vega_0096.vg.json │ │ ├── vega_0097.vg.json │ │ ├── vega_0098.vg.json │ │ ├── vega_0099.vg.json │ │ ├── vega_0100.vg.json │ │ ├── vega_0101.vg.json │ │ ├── vega_0102.vg.json │ │ ├── vega_0103.vg.json │ │ ├── vega_0104.vg.json │ │ ├── vega_0105.vg.json │ │ ├── vega_0106.vg.json │ │ ├── vega_0107.vg.json │ │ ├── vega_0108.vg.json │ │ ├── vega_0109.vg.json │ │ ├── vega_0110.vg.json │ │ ├── vega_0111.vg.json │ │ ├── vega_0112.vg.json │ │ ├── vega_0113.vg.json │ │ ├── vega_0114.vg.json │ │ ├── vega_0115.vg.json │ │ ├── vega_0116.vg.json │ │ ├── vega_0117.vg.json │ │ ├── vega_0118.vg.json │ │ ├── vega_0119.vg.json │ │ ├── vega_0120.vg.json │ │ ├── vega_0121.vg.json │ │ ├── vega_0122.vg.json │ │ ├── vega_0123.vg.json │ │ ├── vega_0124.vg.json │ │ ├── vega_0125.vg.json │ │ ├── vega_0126.vg.json │ │ ├── vega_0127.vg.json │ │ ├── vega_0128.vg.json │ │ ├── vega_0129.vg.json │ │ ├── vega_0130.vg.json │ │ ├── vega_0131.vg.json │ │ ├── vega_0132.vg.json │ │ ├── vega_0133.vg.json │ │ ├── vega_0134.vg.json │ │ ├── vega_0135.vg.json │ │ ├── vega_0136.vg.json │ │ ├── vega_0137.vg.json │ │ ├── vega_0138.vg.json │ │ ├── vega_0139.vg.json │ │ ├── vega_0140.vg.json │ │ ├── vega_0141.vg.json │ │ ├── vega_0142.vg.json │ │ ├── vega_0143.vg.json │ │ ├── vega_0144.vg.json │ │ ├── vega_0145.vg.json │ │ ├── vega_0146.vg.json │ │ ├── vega_0147.vg.json │ │ ├── vega_0148.vg.json │ │ ├── vega_0149.vg.json │ │ ├── vega_0150.vg.json │ │ ├── vega_0151.vg.json │ │ ├── vega_0152.vg.json │ │ ├── vega_0153.vg.json │ │ ├── vega_0154.vg.json │ │ ├── vega_0155.vg.json │ │ ├── vega_0156.vg.json │ │ ├── vega_0157.vg.json │ │ ├── vega_0158.vg.json │ │ ├── vega_0159.vg.json │ │ ├── vega_0160.vg.json │ │ ├── vega_0161.vg.json │ │ ├── vega_0162.vg.json │ │ ├── vega_0163.vg.json │ │ ├── vega_0164.vg.json │ │ ├── vega_0165.vg.json │ │ ├── vega_0166.vg.json │ │ ├── vega_0167.vg.json │ │ ├── vega_0168.vg.json │ │ ├── vega_0169.vg.json │ │ ├── vega_0170.vg.json │ │ ├── vega_0171.vg.json │ │ ├── vega_0172.vg.json │ │ ├── vega_0173.vg.json │ │ ├── vega_0174.vg.json │ │ ├── vega_0175.vg.json │ │ ├── vega_0176.vg.json │ │ ├── vega_0177.vg.json │ │ ├── vega_0178.vg.json │ │ ├── vega_0179.vg.json │ │ ├── vega_0180.vg.json │ │ ├── vega_0181.vg.json │ │ ├── vega_0182.vg.json │ │ ├── vega_0183.vg.json │ │ ├── vega_0184.vg.json │ │ ├── vega_0185.vg.json │ │ ├── vega_0186.vg.json │ │ ├── vega_0187.vg.json │ │ ├── vega_0188.vg.json │ │ ├── vega_0189.vg.json │ │ ├── vega_0190.vg.json │ │ ├── vega_0191.vg.json │ │ ├── vega_0192.vg.json │ │ ├── vega_0193.vg.json │ │ ├── vega_0194.vg.json │ │ ├── vega_0195.vg.json │ │ ├── vega_0196.vg.json │ │ ├── vega_0197.vg.json │ │ ├── vega_0198.vg.json │ │ ├── vega_0199.vg.json │ │ ├── vega_0200.vg.json │ │ ├── vega_0201.vg.json │ │ ├── vega_0202.vg.json │ │ ├── vega_0203.vg.json │ │ ├── vega_0204.vg.json │ │ ├── vega_0205.vg.json │ │ ├── vega_0206.vg.json │ │ ├── vega_0207.vg.json │ │ ├── vega_0208.vg.json │ │ ├── vega_0209.vg.json │ │ ├── vega_0210.vg.json │ │ ├── vega_0211.vg.json │ │ ├── vega_0212.vg.json │ │ ├── vega_0213.vg.json │ │ ├── vega_0214.vg.json │ │ ├── vega_0215.vg.json │ │ ├── vega_0216.vg.json │ │ ├── vega_0217.vg.json │ │ ├── vega_0218.vg.json │ │ ├── vega_0219.vg.json │ │ ├── vega_0220.vg.json │ │ ├── vega_0221.vg.json │ │ ├── vega_0222.vg.json │ │ ├── vega_0223.vg.json │ │ ├── vega_0224.vg.json │ │ ├── vega_0225.vg.json │ │ ├── vega_0226.vg.json │ │ ├── vega_0227.vg.json │ │ ├── vega_0228.vg.json │ │ ├── vega_0229.vg.json │ │ ├── vega_0230.vg.json │ │ ├── vega_0231.vg.json │ │ ├── vega_0232.vg.json │ │ ├── vega_0233.vg.json │ │ ├── vega_0234.vg.json │ │ ├── vega_0235.vg.json │ │ ├── vega_0236.vg.json │ │ ├── vega_0237.vg.json │ │ ├── vega_0238.vg.json │ │ ├── vega_0239.vg.json │ │ ├── vega_0240.vg.json │ │ ├── vega_0241.vg.json │ │ ├── vega_0242.vg.json │ │ ├── vega_0243.vg.json │ │ ├── vega_0244.vg.json │ │ ├── vega_0245.vg.json │ │ ├── vega_0246.vg.json │ │ ├── vega_0247.vg.json │ │ ├── vega_0248.vg.json │ │ ├── vega_0249.vg.json │ │ ├── vega_0250.vg.json │ │ ├── vega_0251.vg.json │ │ ├── vega_0252.vg.json │ │ ├── vega_0253.vg.json │ │ ├── vega_0254.vg.json │ │ ├── vega_0255.vg.json │ │ ├── vega_0256.vg.json │ │ ├── vega_0257.vg.json │ │ ├── vega_0258.vg.json │ │ ├── vega_0259.vg.json │ │ ├── vega_0260.vg.json │ │ ├── vega_0261.vg.json │ │ ├── vega_0262.vg.json │ │ ├── vega_0263.vg.json │ │ ├── vega_0264.vg.json │ │ ├── vega_0265.vg.json │ │ ├── vega_0266.vg.json │ │ ├── vega_0267.vg.json │ │ ├── vega_0268.vg.json │ │ ├── vega_0269.vg.json │ │ ├── vega_0270.vg.json │ │ ├── vega_0271.vg.json │ │ ├── vega_0272.vg.json │ │ ├── vega_0273.vg.json │ │ ├── vega_0274.vg.json │ │ ├── vega_0275.vg.json │ │ ├── vega_0276.vg.json │ │ ├── vega_0277.vg.json │ │ ├── vega_0278.vg.json │ │ ├── vega_0279.vg.json │ │ ├── vega_0280.vg.json │ │ ├── vega_0281.vg.json │ │ ├── vega_0282.vg.json │ │ ├── vega_0283.vg.json │ │ ├── vega_0284.vg.json │ │ ├── vega_0285.vg.json │ │ ├── vega_0286.vg.json │ │ ├── vega_0287.vg.json │ │ ├── vega_0288.vg.json │ │ ├── vega_0289.vg.json │ │ ├── vega_0290.vg.json │ │ ├── vega_0291.vg.json │ │ ├── vega_0292.vg.json │ │ ├── vega_0293.vg.json │ │ ├── vega_0294.vg.json │ │ ├── vega_0295.vg.json │ │ ├── vega_0296.vg.json │ │ ├── vega_0297.vg.json │ │ ├── vega_0298.vg.json │ │ ├── vega_0299.vg.json │ │ ├── vega_0300.vg.json │ │ ├── vega_0301.vg.json │ │ ├── vega_0302.vg.json │ │ ├── vega_0303.vg.json │ │ ├── vega_0304.vg.json │ │ ├── vega_0305.vg.json │ │ ├── vega_0306.vg.json │ │ ├── vega_0307.vg.json │ │ ├── vega_0308.vg.json │ │ ├── vega_0309.vg.json │ │ ├── vega_0310.vg.json │ │ ├── vega_0311.vg.json │ │ ├── vega_0312.vg.json │ │ ├── vega_0313.vg.json │ │ ├── vega_0314.vg.json │ │ ├── vega_0315.vg.json │ │ ├── vega_0316.vg.json │ │ ├── vega_0317.vg.json │ │ ├── vega_0318.vg.json │ │ ├── vega_0319.vg.json │ │ ├── vega_0320.vg.json │ │ ├── vega_0321.vg.json │ │ ├── vega_0322.vg.json │ │ ├── vega_0323.vg.json │ │ ├── vega_0324.vg.json │ │ ├── vega_0325.vg.json │ │ ├── vega_0326.vg.json │ │ ├── vega_0327.vg.json │ │ ├── vega_0328.vg.json │ │ ├── vega_0329.vg.json │ │ ├── vega_0330.vg.json │ │ ├── vega_0331.vg.json │ │ ├── vega_0332.vg.json │ │ ├── vega_0333.vg.json │ │ ├── vega_0334.vg.json │ │ ├── vega_0335.vg.json │ │ ├── vega_0336.vg.json │ │ ├── vega_0337.vg.json │ │ ├── vega_0338.vg.json │ │ ├── vega_0339.vg.json │ │ ├── vega_0340.vg.json │ │ ├── vega_0341.vg.json │ │ ├── vega_0342.vg.json │ │ ├── vega_0343.vg.json │ │ ├── vega_0344.vg.json │ │ ├── vega_0345.vg.json │ │ ├── vega_0346.vg.json │ │ ├── vega_0347.vg.json │ │ ├── vega_0348.vg.json │ │ ├── vega_0349.vg.json │ │ ├── vega_0350.vg.json │ │ ├── vega_0351.vg.json │ │ ├── vega_0352.vg.json │ │ ├── vega_0353.vg.json │ │ ├── vega_0354.vg.json │ │ ├── vega_0355.vg.json │ │ ├── vega_0356.vg.json │ │ ├── vega_0357.vg.json │ │ ├── vega_0358.vg.json │ │ ├── vega_0359.vg.json │ │ ├── vega_0360.vg.json │ │ ├── vega_0361.vg.json │ │ ├── vega_0362.vg.json │ │ ├── vega_0363.vg.json │ │ ├── vega_0364.vg.json │ │ ├── vega_0365.vg.json │ │ ├── vega_0366.vg.json │ │ ├── vega_0367.vg.json │ │ ├── vega_0368.vg.json │ │ ├── vega_0369.vg.json │ │ ├── vega_0370.vg.json │ │ ├── vega_0371.vg.json │ │ ├── vega_0372.vg.json │ │ ├── vega_0373.vg.json │ │ ├── vega_0374.vg.json │ │ ├── vega_0375.vg.json │ │ ├── vega_0376.vg.json │ │ ├── vega_0377.vg.json │ │ ├── vega_0378.vg.json │ │ ├── vega_0379.vg.json │ │ ├── vega_0380.vg.json │ │ ├── vega_0381.vg.json │ │ ├── vega_0382.vg.json │ │ ├── vega_0383.vg.json │ │ ├── vega_0384.vg.json │ │ ├── vega_0385.vg.json │ │ ├── vega_0386.vg.json │ │ ├── vega_0387.vg.json │ │ ├── vega_0388.vg.json │ │ ├── vega_0389.vg.json │ │ ├── vega_0390.vg.json │ │ ├── vega_0391.vg.json │ │ ├── vega_0392.vg.json │ │ ├── vega_0393.vg.json │ │ ├── vega_0394.vg.json │ │ ├── vega_0395.vg.json │ │ ├── vega_0396.vg.json │ │ ├── vega_0397.vg.json │ │ ├── vega_0398.vg.json │ │ ├── vega_0399.vg.json │ │ ├── vega_0400.vg.json │ │ ├── vega_0401.vg.json │ │ ├── vega_0402.vg.json │ │ ├── vega_0403.vg.json │ │ ├── vega_0404.vg.json │ │ ├── vega_0405.vg.json │ │ ├── vega_0406.vg.json │ │ ├── vega_0407.vg.json │ │ ├── vega_0408.vg.json │ │ ├── vega_0409.vg.json │ │ ├── vega_0410.vg.json │ │ ├── vega_0411.vg.json │ │ ├── vega_0412.vg.json │ │ ├── vega_0413.vg.json │ │ ├── vega_0414.vg.json │ │ ├── vega_0415.vg.json │ │ ├── vega_0416.vg.json │ │ ├── vega_0417.vg.json │ │ ├── vega_0418.vg.json │ │ ├── vega_0419.vg.json │ │ ├── vega_0420.vg.json │ │ ├── vega_0421.vg.json │ │ ├── vega_0422.vg.json │ │ ├── vega_0423.vg.json │ │ ├── vega_0424.vg.json │ │ ├── vega_0425.vg.json │ │ ├── vega_0426.vg.json │ │ ├── vega_0427.vg.json │ │ ├── vega_0428.vg.json │ │ ├── vega_0429.vg.json │ │ ├── vega_0430.vg.json │ │ ├── vega_0431.vg.json │ │ ├── vega_0432.vg.json │ │ ├── vega_0433.vg.json │ │ ├── vega_0434.vg.json │ │ ├── vega_0435.vg.json │ │ ├── vega_0436.vg.json │ │ ├── vega_0437.vg.json │ │ ├── vega_0438.vg.json │ │ ├── vega_0439.vg.json │ │ ├── vega_0440.vg.json │ │ ├── vega_0441.vg.json │ │ ├── vega_0442.vg.json │ │ ├── vega_0443.vg.json │ │ ├── vega_0444.vg.json │ │ ├── vega_0445.vg.json │ │ ├── vega_0446.vg.json │ │ ├── vega_0447.vg.json │ │ ├── vega_0448.vg.json │ │ ├── vega_0449.vg.json │ │ ├── vega_0450.vg.json │ │ ├── vega_0451.vg.json │ │ ├── vega_0452.vg.json │ │ ├── vega_0453.vg.json │ │ ├── vega_0454.vg.json │ │ ├── vega_0455.vg.json │ │ ├── vega_0456.vg.json │ │ ├── vega_0457.vg.json │ │ ├── vega_0458.vg.json │ │ ├── vega_0459.vg.json │ │ ├── vega_0460.vg.json │ │ ├── vega_0461.vg.json │ │ ├── vega_0462.vg.json │ │ ├── vega_0463.vg.json │ │ ├── vega_0464.vg.json │ │ ├── vega_0465.vg.json │ │ ├── vega_0466.vg.json │ │ ├── vega_0467.vg.json │ │ ├── vega_0468.vg.json │ │ ├── vega_0469.vg.json │ │ ├── vega_0470.vg.json │ │ ├── vega_0471.vg.json │ │ ├── vega_0472.vg.json │ │ ├── vega_0473.vg.json │ │ ├── vega_0474.vg.json │ │ ├── vega_0475.vg.json │ │ ├── vega_0476.vg.json │ │ ├── vega_0477.vg.json │ │ ├── vega_0478.vg.json │ │ ├── vega_0479.vg.json │ │ ├── vega_0480.vg.json │ │ ├── vega_0481.vg.json │ │ ├── vega_0482.vg.json │ │ ├── vega_0483.vg.json │ │ ├── vega_0484.vg.json │ │ ├── vega_0485.vg.json │ │ ├── vega_0486.vg.json │ │ ├── vega_0487.vg.json │ │ ├── vega_0488.vg.json │ │ ├── vega_0489.vg.json │ │ ├── vega_0490.vg.json │ │ ├── vega_0491.vg.json │ │ ├── vega_0492.vg.json │ │ ├── vega_0493.vg.json │ │ ├── vega_0494.vg.json │ │ ├── vega_0495.vg.json │ │ ├── vega_0496.vg.json │ │ ├── vega_0497.vg.json │ │ ├── vega_0498.vg.json │ │ ├── vega_0499.vg.json │ │ ├── vega_0500.vg.json │ │ ├── vega_0501.vg.json │ │ ├── vega_0502.vg.json │ │ ├── vega_0504.vg.json │ │ ├── vega_0505.vg.json │ │ ├── vega_0506.vg.json │ │ ├── vega_0507.vg.json │ │ ├── vega_0508.vg.json │ │ ├── vega_0509.vg.json │ │ ├── vega_0510.vg.json │ │ ├── vega_0511.vg.json │ │ ├── vega_0512.vg.json │ │ ├── vega_0513.vg.json │ │ ├── vega_0514.vg.json │ │ ├── vega_0515.vg.json │ │ ├── vega_0516.vg.json │ │ ├── vega_0517.vg.json │ │ ├── vega_0518.vg.json │ │ ├── vega_0519.vg.json │ │ ├── vega_0520.vg.json │ │ ├── vega_0521.vg.json │ │ ├── vega_0522.vg.json │ │ ├── vega_0523.vg.json │ │ ├── vega_0524.vg.json │ │ ├── vega_0525.vg.json │ │ ├── vega_0526.vg.json │ │ ├── vega_0527.vg.json │ │ ├── vega_0528.vg.json │ │ ├── vega_0529.vg.json │ │ ├── vega_0530.vg.json │ │ ├── vega_0531.vg.json │ │ ├── vega_0532.vg.json │ │ ├── vega_0533.vg.json │ │ ├── vega_0534.vg.json │ │ ├── vega_0535.vg.json │ │ ├── vega_0536.vg.json │ │ ├── vega_0537.vg.json │ │ ├── vega_0538.vg.json │ │ ├── vega_0539.vg.json │ │ ├── vega_0540.vg.json │ │ ├── vega_0541.vg.json │ │ ├── vega_0542.vg.json │ │ ├── vega_0543.vg.json │ │ ├── vega_0544.vg.json │ │ ├── vega_0545.vg.json │ │ ├── vega_0546.vg.json │ │ ├── vega_0547.vg.json │ │ ├── vega_0548.vg.json │ │ ├── vega_0549.vg.json │ │ ├── vega_0550.vg.json │ │ ├── vega_0551.vg.json │ │ ├── vega_0552.vg.json │ │ ├── vega_0553.vg.json │ │ ├── vega_0554.vg.json │ │ ├── vega_0555.vg.json │ │ ├── vega_0556.vg.json │ │ ├── vega_0557.vg.json │ │ ├── vega_0558.vg.json │ │ ├── vega_0559.vg.json │ │ ├── vega_0560.vg.json │ │ ├── vega_0561.vg.json │ │ ├── vega_0562.vg.json │ │ ├── vega_0563.vg.json │ │ ├── vega_0564.vg.json │ │ ├── vega_0565.vg.json │ │ ├── vega_0566.vg.json │ │ ├── vega_0567.vg.json │ │ ├── vega_0568.vg.json │ │ ├── vega_0569.vg.json │ │ ├── vega_0570.vg.json │ │ ├── vega_0571.vg.json │ │ ├── vega_0572.vg.json │ │ ├── vega_0573.vg.json │ │ ├── vega_0574.vg.json │ │ ├── vega_0575.vg.json │ │ ├── vega_0576.vg.json │ │ ├── vega_0577.vg.json │ │ ├── vega_0578.vg.json │ │ ├── vega_0579.vg.json │ │ ├── vega_0580.vg.json │ │ ├── vega_0581.vg.json │ │ ├── vega_0582.vg.json │ │ ├── vega_0583.vg.json │ │ ├── vega_0584.vg.json │ │ ├── vega_0585.vg.json │ │ ├── vega_0586.vg.json │ │ ├── vega_0587.vg.json │ │ ├── vega_0588.vg.json │ │ ├── vega_0589.vg.json │ │ ├── vega_0590.vg.json │ │ ├── vega_0591.vg.json │ │ ├── vega_0592.vg.json │ │ ├── vega_0593.vg.json │ │ ├── vega_0594.vg.json │ │ ├── vega_0595.vg.json │ │ ├── vega_0596.vg.json │ │ ├── vega_0597.vg.json │ │ ├── vega_0598.vg.json │ │ ├── vega_0599.vg.json │ │ ├── vega_0600.vg.json │ │ ├── vega_0601.vg.json │ │ ├── vega_0602.vg.json │ │ ├── vega_0603.vg.json │ │ ├── vega_0604.vg.json │ │ ├── vega_0605.vg.json │ │ ├── vega_0606.vg.json │ │ ├── vega_0607.vg.json │ │ ├── vega_0608.vg.json │ │ ├── vega_0609.vg.json │ │ ├── vega_0610.vg.json │ │ ├── vega_0611.vg.json │ │ ├── vega_0612.vg.json │ │ ├── vega_0613.vg.json │ │ ├── vega_0614.vg.json │ │ ├── vega_0615.vg.json │ │ ├── vega_0616.vg.json │ │ ├── vega_0617.vg.json │ │ ├── vega_0618.vg.json │ │ ├── vega_0619.vg.json │ │ ├── vega_0620.vg.json │ │ ├── vega_0621.vg.json │ │ ├── vega_0622.vg.json │ │ ├── vega_0623.vg.json │ │ ├── vega_0624.vg.json │ │ ├── vega_0625.vg.json │ │ ├── vega_0626.vg.json │ │ ├── vega_0627.vg.json │ │ ├── vega_0628.vg.json │ │ ├── vega_0629.vg.json │ │ ├── vega_0630.vg.json │ │ ├── vega_0631.vg.json │ │ ├── vega_0632.vg.json │ │ ├── vega_0633.vg.json │ │ ├── vega_0634.vg.json │ │ ├── vega_0635.vg.json │ │ ├── vega_0636.vg.json │ │ ├── vega_0637.vg.json │ │ ├── vega_0638.vg.json │ │ ├── vega_0639.vg.json │ │ ├── vega_0640.vg.json │ │ ├── vega_0641.vg.json │ │ ├── vega_0642.vg.json │ │ ├── vega_0643.vg.json │ │ ├── vega_0644.vg.json │ │ ├── vega_0645.vg.json │ │ ├── vega_0646.vg.json │ │ ├── vega_0647.vg.json │ │ ├── vega_0648.vg.json │ │ ├── vega_0649.vg.json │ │ ├── vega_0650.vg.json │ │ ├── vega_0651.vg.json │ │ ├── vega_0652.vg.json │ │ ├── vega_0653.vg.json │ │ ├── vega_0654.vg.json │ │ ├── vega_0655.vg.json │ │ ├── vega_0656.vg.json │ │ ├── vega_0657.vg.json │ │ ├── vega_0658.vg.json │ │ ├── vega_0659.vg.json │ │ ├── vega_0660.vg.json │ │ ├── vega_0661.vg.json │ │ ├── vega_0662.vg.json │ │ ├── vega_0663.vg.json │ │ ├── vega_0664.vg.json │ │ ├── vega_0665.vg.json │ │ ├── vega_0666.vg.json │ │ ├── vega_0667.vg.json │ │ ├── vega_0668.vg.json │ │ ├── vega_0669.vg.json │ │ ├── vega_0670.vg.json │ │ ├── vega_0671.vg.json │ │ ├── vega_0672.vg.json │ │ ├── vega_0673.vg.json │ │ ├── vega_0674.vg.json │ │ ├── vega_0675.vg.json │ │ ├── vega_0676.vg.json │ │ ├── vega_0677.vg.json │ │ ├── vega_0678.vg.json │ │ ├── vega_0679.vg.json │ │ ├── vega_0680.vg.json │ │ ├── vega_0681.vg.json │ │ ├── vega_0682.vg.json │ │ ├── vega_0683.vg.json │ │ ├── vega_0684.vg.json │ │ ├── vega_0685.vg.json │ │ ├── vega_0686.vg.json │ │ ├── vega_0687.vg.json │ │ ├── vega_0688.vg.json │ │ ├── vega_0689.vg.json │ │ ├── vega_0690.vg.json │ │ ├── vega_0691.vg.json │ │ ├── vega_0692.vg.json │ │ ├── vega_0693.vg.json │ │ ├── vega_0694.vg.json │ │ ├── vega_0695.vg.json │ │ ├── vega_0696.vg.json │ │ ├── vega_0697.vg.json │ │ ├── vega_0698.vg.json │ │ ├── vega_0699.vg.json │ │ ├── vega_0700.vg.json │ │ ├── vega_0701.vg.json │ │ ├── vega_0702.vg.json │ │ ├── vega_0703.vg.json │ │ ├── vega_0704.vg.json │ │ ├── vega_0705.vg.json │ │ ├── vega_0706.vg.json │ │ ├── vega_0707.vg.json │ │ ├── vega_0708.vg.json │ │ ├── vega_0709.vg.json │ │ ├── vega_0710.vg.json │ │ ├── vega_0711.vg.json │ │ ├── vega_0712.vg.json │ │ ├── vega_0713.vg.json │ │ ├── vega_0714.vg.json │ │ ├── vega_0715.vg.json │ │ ├── vega_0716.vg.json │ │ ├── vega_0717.vg.json │ │ ├── vega_0718.vg.json │ │ ├── vega_0719.vg.json │ │ ├── vega_0720.vg.json │ │ ├── vega_0721.vg.json │ │ ├── vega_0722.vg.json │ │ ├── vega_0723.vg.json │ │ ├── vega_0724.vg.json │ │ ├── vega_0725.vg.json │ │ ├── vega_0726.vg.json │ │ ├── vega_0727.vg.json │ │ ├── vega_0728.vg.json │ │ ├── vega_0729.vg.json │ │ ├── vega_0730.vg.json │ │ ├── vega_0731.vg.json │ │ ├── vega_0732.vg.json │ │ ├── vega_0733.vg.json │ │ ├── vega_0734.vg.json │ │ ├── vega_0735.vg.json │ │ ├── vega_0736.vg.json │ │ ├── vega_0737.vg.json │ │ ├── vega_0738.vg.json │ │ ├── vega_0739.vg.json │ │ ├── vega_0740.vg.json │ │ ├── vega_0741.vg.json │ │ ├── vega_0742.vg.json │ │ ├── vega_0743.vg.json │ │ ├── vega_0744.vg.json │ │ ├── vega_0745.vg.json │ │ ├── vega_0746.vg.json │ │ ├── vega_0747.vg.json │ │ ├── vega_0748.vg.json │ │ ├── vega_0749.vg.json │ │ ├── vega_0750.vg.json │ │ ├── vega_0751.vg.json │ │ ├── vega_0752.vg.json │ │ ├── vega_0753.vg.json │ │ ├── vega_0754.vg.json │ │ ├── vega_0755.vg.json │ │ ├── vega_0756.vg.json │ │ ├── vega_0757.vg.json │ │ ├── vega_0758.vg.json │ │ ├── vega_0759.vg.json │ │ ├── vega_0760.vg.json │ │ ├── vega_0761.vg.json │ │ ├── vega_0762.vg.json │ │ ├── vega_0763.vg.json │ │ ├── vega_0764.vg.json │ │ ├── vega_0765.vg.json │ │ ├── vega_0766.vg.json │ │ ├── vega_0767.vg.json │ │ ├── vega_0768.vg.json │ │ ├── vega_0769.vg.json │ │ ├── vega_0770.vg.json │ │ ├── vega_0771.vg.json │ │ ├── vega_0772.vg.json │ │ ├── vega_0773.vg.json │ │ ├── vega_0774.vg.json │ │ ├── vega_0775.vg.json │ │ ├── vega_0776.vg.json │ │ ├── vega_0777.vg.json │ │ ├── vega_0778.vg.json │ │ ├── vega_0779.vg.json │ │ ├── vega_0780.vg.json │ │ ├── vega_0781.vg.json │ │ ├── vega_0782.vg.json │ │ ├── vega_0783.vg.json │ │ ├── vega_0784.vg.json │ │ ├── vega_0785.vg.json │ │ ├── vega_0786.vg.json │ │ ├── vega_0787.vg.json │ │ ├── vega_0788.vg.json │ │ ├── vega_0789.vg.json │ │ ├── vega_0790.vg.json │ │ ├── vega_0791.vg.json │ │ ├── vega_0792.vg.json │ │ ├── vega_0793.vg.json │ │ ├── vega_0794.vg.json │ │ ├── vega_0795.vg.json │ │ ├── vega_0796.vg.json │ │ ├── vega_0797.vg.json │ │ ├── vega_0798.vg.json │ │ ├── vega_0799.vg.json │ │ ├── vega_0800.vg.json │ │ ├── vega_0801.vg.json │ │ ├── vega_0802.vg.json │ │ ├── vega_0803.vg.json │ │ ├── vega_0804.vg.json │ │ ├── vega_0805.vg.json │ │ ├── vega_0806.vg.json │ │ ├── vega_0807.vg.json │ │ ├── vega_0808.vg.json │ │ ├── vega_0809.vg.json │ │ ├── vega_0810.vg.json │ │ ├── vega_0811.vg.json │ │ ├── vega_0812.vg.json │ │ ├── vega_0813.vg.json │ │ ├── vega_0814.vg.json │ │ ├── vega_0815.vg.json │ │ ├── vega_0816.vg.json │ │ ├── vega_0817.vg.json │ │ ├── vega_0818.vg.json │ │ ├── vega_0819.vg.json │ │ ├── vega_0820.vg.json │ │ ├── vega_0821.vg.json │ │ ├── vega_0822.vg.json │ │ ├── vega_0823.vg.json │ │ ├── vega_0824.vg.json │ │ ├── vega_0825.vg.json │ │ ├── vega_0826.vg.json │ │ ├── vega_0827.vg.json │ │ ├── vega_0828.vg.json │ │ ├── vega_0829.vg.json │ │ ├── vega_0830.vg.json │ │ ├── vega_0831.vg.json │ │ ├── vega_0832.vg.json │ │ ├── vega_0833.vg.json │ │ ├── vega_0834.vg.json │ │ ├── vega_0835.vg.json │ │ ├── vega_0836.vg.json │ │ ├── vega_0837.vg.json │ │ ├── vega_0838.vg.json │ │ ├── vega_0839.vg.json │ │ ├── vega_0840.vg.json │ │ ├── vega_0841.vg.json │ │ ├── vega_0842.vg.json │ │ ├── vega_0843.vg.json │ │ ├── vega_0844.vg.json │ │ ├── vega_0845.vg.json │ │ ├── vega_0846.vg.json │ │ ├── vega_0847.vg.json │ │ ├── vega_0848.vg.json │ │ ├── vega_0849.vg.json │ │ ├── vega_0850.vg.json │ │ ├── vega_0851.vg.json │ │ ├── vega_0852.vg.json │ │ ├── vega_0853.vg.json │ │ ├── vega_0854.vg.json │ │ ├── vega_0855.vg.json │ │ ├── vega_0856.vg.json │ │ ├── vega_0857.vg.json │ │ ├── vega_0858.vg.json │ │ ├── vega_0859.vg.json │ │ ├── vega_0860.vg.json │ │ ├── vega_0861.vg.json │ │ ├── vega_0862.vg.json │ │ ├── vega_0863.vg.json │ │ ├── vega_0864.vg.json │ │ ├── vega_0865.vg.json │ │ ├── vega_0866.vg.json │ │ ├── vega_0867.vg.json │ │ ├── vega_0868.vg.json │ │ ├── vega_0869.vg.json │ │ ├── vega_0870.vg.json │ │ ├── vega_0871.vg.json │ │ ├── vega_0872.vg.json │ │ ├── vega_0873.vg.json │ │ ├── vega_0874.vg.json │ │ ├── vega_0875.vg.json │ │ ├── vega_0876.vg.json │ │ ├── vega_0877.vg.json │ │ ├── vega_0878.vg.json │ │ ├── vega_0879.vg.json │ │ ├── vega_0880.vg.json │ │ ├── vega_0881.vg.json │ │ ├── vega_0882.vg.json │ │ ├── vega_0883.vg.json │ │ ├── vega_0884.vg.json │ │ ├── vega_0885.vg.json │ │ ├── vega_0886.vg.json │ │ ├── vega_0887.vg.json │ │ ├── vega_0888.vg.json │ │ ├── vega_0889.vg.json │ │ ├── vega_0890.vg.json │ │ ├── vega_0891.vg.json │ │ ├── vega_0892.vg.json │ │ ├── vega_0893.vg.json │ │ ├── vega_0894.vg.json │ │ ├── vega_0895.vg.json │ │ ├── vega_0896.vg.json │ │ ├── vega_0897.vg.json │ │ ├── vega_0898.vg.json │ │ ├── vega_0899.vg.json │ │ ├── vega_0900.vg.json │ │ ├── vega_0901.vg.json │ │ ├── vega_0902.vg.json │ │ ├── vega_0903.vg.json │ │ ├── vega_0904.vg.json │ │ ├── vega_0905.vg.json │ │ ├── vega_0906.vg.json │ │ ├── vega_0907.vg.json │ │ ├── vega_0908.vg.json │ │ ├── vega_0909.vg.json │ │ ├── vega_0910.vg.json │ │ ├── vega_0911.vg.json │ │ ├── vega_0912.vg.json │ │ ├── vega_0913.vg.json │ │ ├── vega_0914.vg.json │ │ ├── vega_0915.vg.json │ │ ├── vega_0916.vg.json │ │ ├── vega_0917.vg.json │ │ ├── vega_0918.vg.json │ │ ├── vega_0919.vg.json │ │ ├── vega_0920.vg.json │ │ ├── vega_0921.vg.json │ │ ├── vega_0922.vg.json │ │ ├── vega_0923.vg.json │ │ ├── vega_0924.vg.json │ │ ├── vega_0925.vg.json │ │ ├── vega_0926.vg.json │ │ ├── vega_0927.vg.json │ │ ├── vega_0928.vg.json │ │ ├── vega_0929.vg.json │ │ ├── vega_0930.vg.json │ │ ├── vega_0931.vg.json │ │ ├── vega_0932.vg.json │ │ ├── vega_0933.vg.json │ │ ├── vega_0934.vg.json │ │ ├── vega_0935.vg.json │ │ ├── vega_0936.vg.json │ │ ├── vega_0937.vg.json │ │ ├── vega_0938.vg.json │ │ ├── vega_0939.vg.json │ │ ├── vega_0940.vg.json │ │ ├── vega_0941.vg.json │ │ ├── vega_0942.vg.json │ │ ├── vega_0943.vg.json │ │ ├── vega_0944.vg.json │ │ ├── vega_0945.vg.json │ │ ├── vega_0946.vg.json │ │ ├── vega_0947.vg.json │ │ ├── vega_0948.vg.json │ │ ├── vega_0949.vg.json │ │ ├── vega_0950.vg.json │ │ ├── vega_0951.vg.json │ │ ├── vega_0952.vg.json │ │ ├── vega_0953.vg.json │ │ ├── vega_0954.vg.json │ │ ├── vega_0955.vg.json │ │ ├── vega_0956.vg.json │ │ ├── vega_0957.vg.json │ │ ├── vega_0958.vg.json │ │ ├── vega_0959.vg.json │ │ ├── vega_0960.vg.json │ │ ├── vega_0961.vg.json │ │ ├── vega_0962.vg.json │ │ ├── vega_0963.vg.json │ │ ├── vega_0964.vg.json │ │ ├── vega_0965.vg.json │ │ ├── vega_0966.vg.json │ │ ├── vega_0967.vg.json │ │ ├── vega_0968.vg.json │ │ ├── vega_0969.vg.json │ │ ├── vega_0970.vg.json │ │ ├── vega_0971.vg.json │ │ ├── vega_0972.vg.json │ │ ├── vega_0973.vg.json │ │ ├── vega_0974.vg.json │ │ ├── vega_0975.vg.json │ │ ├── vega_0976.vg.json │ │ ├── vega_0977.vg.json │ │ ├── vega_0978.vg.json │ │ ├── vega_0979.vg.json │ │ ├── vega_0980.vg.json │ │ ├── vega_0981.vg.json │ │ ├── vega_0982.vg.json │ │ ├── vega_0983.vg.json │ │ ├── vega_0984.vg.json │ │ ├── vega_0985.vg.json │ │ ├── vega_0986.vg.json │ │ ├── vega_0987.vg.json │ │ ├── vega_0988.vg.json │ │ ├── vega_0989.vg.json │ │ ├── vega_0990.vg.json │ │ ├── vega_0991.vg.json │ │ ├── vega_0992.vg.json │ │ ├── vega_0993.vg.json │ │ ├── vega_0994.vg.json │ │ ├── vega_0995.vg.json │ │ ├── vega_0996.vg.json │ │ ├── vega_0997.vg.json │ │ ├── vega_0998.vg.json │ │ ├── vega_0999.vg.json │ │ ├── vega_1000.vg.json │ │ ├── vega_1001.vg.json │ │ ├── vega_1002.vg.json │ │ ├── vega_1003.vg.json │ │ ├── vega_1004.vg.json │ │ ├── vega_1005.vg.json │ │ ├── vega_1006.vg.json │ │ ├── vega_1007.vg.json │ │ ├── vega_1008.vg.json │ │ ├── vega_1009.vg.json │ │ ├── vega_1010.vg.json │ │ ├── vega_1011.vg.json │ │ ├── vega_1012.vg.json │ │ ├── vega_1013.vg.json │ │ ├── vega_1014.vg.json │ │ ├── vega_1015.vg.json │ │ ├── vega_1016.vg.json │ │ ├── vega_1017.vg.json │ │ ├── vega_1018.vg.json │ │ ├── vega_1019.vg.json │ │ ├── vega_1020.vg.json │ │ ├── vega_1021.vg.json │ │ ├── vega_1022.vg.json │ │ ├── vega_1023.vg.json │ │ ├── vega_1024.vg.json │ │ ├── vega_1025.vg.json │ │ ├── vega_1026.vg.json │ │ ├── vega_1027.vg.json │ │ ├── vega_1028.vg.json │ │ ├── vega_1029.vg.json │ │ ├── vega_1030.vg.json │ │ ├── vega_1031.vg.json │ │ ├── vega_1032.vg.json │ │ ├── vega_1033.vg.json │ │ ├── vega_1034.vg.json │ │ ├── vega_1035.vg.json │ │ ├── vega_1036.vg.json │ │ ├── vega_1037.vg.json │ │ ├── vega_1038.vg.json │ │ ├── vega_1039.vg.json │ │ ├── vega_1040.vg.json │ │ ├── vega_1041.vg.json │ │ ├── vega_1042.vg.json │ │ ├── vega_1043.vg.json │ │ ├── vega_1044.vg.json │ │ ├── vega_1045.vg.json │ │ ├── vega_1046.vg.json │ │ ├── vega_1047.vg.json │ │ ├── vega_1048.vg.json │ │ ├── vega_1049.vg.json │ │ ├── vega_1050.vg.json │ │ ├── vega_1051.vg.json │ │ ├── vega_1052.vg.json │ │ ├── vega_1053.vg.json │ │ ├── vega_1054.vg.json │ │ ├── vega_1055.vg.json │ │ ├── vega_1056.vg.json │ │ ├── vega_1057.vg.json │ │ ├── vega_1058.vg.json │ │ ├── vega_1059.vg.json │ │ ├── vega_1060.vg.json │ │ ├── vega_1061.vg.json │ │ ├── vega_1062.vg.json │ │ ├── vega_1063.vg.json │ │ ├── vega_1064.vg.json │ │ ├── vega_1065.vg.json │ │ ├── vega_1066.vg.json │ │ ├── vega_1067.vg.json │ │ ├── vega_1068.vg.json │ │ ├── vega_1069.vg.json │ │ ├── vega_1070.vg.json │ │ ├── vega_1071.vg.json │ │ ├── vega_1072.vg.json │ │ ├── vega_1073.vg.json │ │ ├── vega_1074.vg.json │ │ ├── vega_1075.vg.json │ │ ├── vega_1076.vg.json │ │ ├── vega_1077.vg.json │ │ ├── vega_1078.vg.json │ │ ├── vega_1079.vg.json │ │ ├── vega_1080.vg.json │ │ ├── vega_1081.vg.json │ │ ├── vega_1082.vg.json │ │ ├── vega_1083.vg.json │ │ ├── vega_1084.vg.json │ │ ├── vega_1085.vg.json │ │ ├── vega_1086.vg.json │ │ ├── vega_1087.vg.json │ │ ├── vega_1088.vg.json │ │ ├── vega_1089.vg.json │ │ ├── vega_1090.vg.json │ │ ├── vega_1091.vg.json │ │ ├── vega_1092.vg.json │ │ ├── vega_1093.vg.json │ │ ├── vega_1094.vg.json │ │ ├── vega_1095.vg.json │ │ ├── vega_1096.vg.json │ │ ├── vega_1097.vg.json │ │ ├── vega_1098.vg.json │ │ ├── vega_1099.vg.json │ │ ├── vega_1100.vg.json │ │ ├── vega_1101.vg.json │ │ ├── vega_1102.vg.json │ │ ├── vega_1103.vg.json │ │ ├── vega_1104.vg.json │ │ ├── vega_1105.vg.json │ │ ├── vega_1106.vg.json │ │ ├── vega_1107.vg.json │ │ ├── vega_1108.vg.json │ │ ├── vega_1109.vg.json │ │ ├── vega_1110.vg.json │ │ ├── vega_1111.vg.json │ │ ├── vega_1112.vg.json │ │ ├── vega_1113.vg.json │ │ ├── vega_1114.vg.json │ │ ├── vega_1115.vg.json │ │ ├── vega_1116.vg.json │ │ ├── vega_1117.vg.json │ │ ├── vega_1118.vg.json │ │ ├── vega_1119.vg.json │ │ ├── vega_1120.vg.json │ │ ├── vega_1121.vg.json │ │ ├── vega_1122.vg.json │ │ ├── vega_1123.vg.json │ │ ├── vega_1124.vg.json │ │ ├── vega_1125.vg.json │ │ ├── vega_1126.vg.json │ │ ├── vega_1127.vg.json │ │ ├── vega_1128.vg.json │ │ ├── vega_1129.vg.json │ │ ├── vega_1130.vg.json │ │ ├── vega_1131.vg.json │ │ ├── vega_1132.vg.json │ │ ├── vega_1133.vg.json │ │ ├── vega_1134.vg.json │ │ ├── vega_1135.vg.json │ │ ├── vega_1136.vg.json │ │ ├── vega_1137.vg.json │ │ ├── vega_1138.vg.json │ │ ├── vega_1139.vg.json │ │ ├── vega_1140.vg.json │ │ ├── vega_1141.vg.json │ │ ├── vega_1142.vg.json │ │ ├── vega_1143.vg.json │ │ ├── vega_1144.vg.json │ │ ├── vega_1145.vg.json │ │ ├── vega_1146.vg.json │ │ ├── vega_1147.vg.json │ │ ├── vega_1148.vg.json │ │ ├── vega_1149.vg.json │ │ ├── vega_1150.vg.json │ │ ├── vega_1151.vg.json │ │ ├── vega_1152.vg.json │ │ ├── vega_1153.vg.json │ │ ├── vega_1154.vg.json │ │ ├── vega_1155.vg.json │ │ ├── vega_1156.vg.json │ │ ├── vega_1157.vg.json │ │ ├── vega_1158.vg.json │ │ ├── vega_1159.vg.json │ │ ├── vega_1160.vg.json │ │ ├── vega_1161.vg.json │ │ ├── vega_1162.vg.json │ │ ├── vega_1163.vg.json │ │ ├── vega_1164.vg.json │ │ ├── vega_1165.vg.json │ │ ├── vega_1166.vg.json │ │ ├── vega_1167.vg.json │ │ ├── vega_1168.vg.json │ │ ├── vega_1169.vg.json │ │ ├── vega_1170.vg.json │ │ ├── vega_1171.vg.json │ │ ├── vega_1172.vg.json │ │ ├── vega_1173.vg.json │ │ ├── vega_1174.vg.json │ │ ├── vega_1175.vg.json │ │ ├── vega_1176.vg.json │ │ ├── vega_1177.vg.json │ │ ├── vega_1178.vg.json │ │ ├── vega_1179.vg.json │ │ ├── vega_1180.vg.json │ │ ├── vega_1181.vg.json │ │ ├── vega_1182.vg.json │ │ ├── vega_1183.vg.json │ │ ├── vega_1184.vg.json │ │ ├── vega_1185.vg.json │ │ ├── vega_1186.vg.json │ │ ├── vega_1187.vg.json │ │ ├── vega_1188.vg.json │ │ ├── vega_1189.vg.json │ │ ├── vega_1190.vg.json │ │ ├── vega_1191.vg.json │ │ ├── vega_1192.vg.json │ │ ├── vega_1193.vg.json │ │ ├── vega_1194.vg.json │ │ ├── vega_1195.vg.json │ │ ├── vega_1196.vg.json │ │ ├── vega_1197.vg.json │ │ ├── vega_1198.vg.json │ │ ├── vega_1199.vg.json │ │ ├── vega_1200.vg.json │ │ ├── vega_1201.vg.json │ │ ├── vega_1202.vg.json │ │ ├── vega_1203.vg.json │ │ ├── vega_1204.vg.json │ │ ├── vega_1205.vg.json │ │ ├── vega_1206.vg.json │ │ ├── vega_1207.vg.json │ │ ├── vega_1208.vg.json │ │ ├── vega_1209.vg.json │ │ ├── vega_1210.vg.json │ │ ├── vega_1211.vg.json │ │ ├── vega_1212.vg.json │ │ ├── vega_1213.vg.json │ │ ├── vega_1214.vg.json │ │ ├── vega_1215.vg.json │ │ ├── vega_1216.vg.json │ │ ├── vega_1217.vg.json │ │ ├── vega_1218.vg.json │ │ ├── vega_1219.vg.json │ │ ├── vega_1220.vg.json │ │ ├── vega_1221.vg.json │ │ ├── vega_1222.vg.json │ │ ├── vega_1223.vg.json │ │ ├── vega_1224.vg.json │ │ ├── vega_1225.vg.json │ │ ├── vega_1226.vg.json │ │ ├── vega_1227.vg.json │ │ ├── vega_1228.vg.json │ │ ├── vega_1229.vg.json │ │ ├── vega_1230.vg.json │ │ ├── vega_1231.vg.json │ │ ├── vega_1232.vg.json │ │ ├── vega_1233.vg.json │ │ ├── vega_1234.vg.json │ │ ├── vega_1235.vg.json │ │ ├── vega_1236.vg.json │ │ ├── vega_1237.vg.json │ │ ├── vega_1238.vg.json │ │ ├── vega_1239.vg.json │ │ ├── vega_1240.vg.json │ │ ├── vega_1241.vg.json │ │ ├── vega_1242.vg.json │ │ ├── vega_1243.vg.json │ │ ├── vega_1244.vg.json │ │ ├── vega_1245.vg.json │ │ ├── vega_1246.vg.json │ │ ├── vega_1247.vg.json │ │ ├── vega_1248.vg.json │ │ ├── vega_1249.vg.json │ │ ├── vega_1250.vg.json │ │ ├── vega_1251.vg.json │ │ ├── vega_1252.vg.json │ │ ├── vega_1253.vg.json │ │ ├── vega_1254.vg.json │ │ ├── vega_1255.vg.json │ │ ├── vega_1256.vg.json │ │ ├── vega_1257.vg.json │ │ ├── vega_1258.vg.json │ │ ├── vega_1259.vg.json │ │ ├── vega_1260.vg.json │ │ ├── vega_1261.vg.json │ │ ├── vega_1262.vg.json │ │ ├── vega_1263.vg.json │ │ ├── vega_1264.vg.json │ │ ├── vega_1265.vg.json │ │ ├── vega_1266.vg.json │ │ ├── vega_1267.vg.json │ │ ├── vega_1268.vg.json │ │ ├── vega_1269.vg.json │ │ ├── vega_1270.vg.json │ │ ├── vega_1271.vg.json │ │ ├── vega_1272.vg.json │ │ ├── vega_1273.vg.json │ │ ├── vega_1274.vg.json │ │ ├── vega_1275.vg.json │ │ ├── vega_1276.vg.json │ │ ├── vega_1277.vg.json │ │ ├── vega_1278.vg.json │ │ ├── vega_1279.vg.json │ │ ├── vega_1280.vg.json │ │ ├── vega_1281.vg.json │ │ ├── vega_1282.vg.json │ │ ├── vega_1283.vg.json │ │ ├── vega_1284.vg.json │ │ ├── vega_1285.vg.json │ │ ├── vega_1286.vg.json │ │ ├── vega_1287.vg.json │ │ ├── vega_1288.vg.json │ │ ├── vega_1289.vg.json │ │ ├── vega_1290.vg.json │ │ ├── vega_1291.vg.json │ │ ├── vega_1292.vg.json │ │ ├── vega_1293.vg.json │ │ ├── vega_1294.vg.json │ │ ├── vega_1295.vg.json │ │ ├── vega_1296.vg.json │ │ ├── vega_1297.vg.json │ │ ├── vega_1298.vg.json │ │ ├── vega_1299.vg.json │ │ ├── vega_1300.vg.json │ │ ├── vega_1301.vg.json │ │ ├── vega_1302.vg.json │ │ ├── vega_1303.vg.json │ │ ├── vega_1304.vg.json │ │ ├── vega_1305.vg.json │ │ ├── vega_1306.vg.json │ │ ├── vega_1307.vg.json │ │ ├── vega_1308.vg.json │ │ ├── vega_1309.vg.json │ │ ├── vega_1310.vg.json │ │ ├── vega_1311.vg.json │ │ ├── vega_1312.vg.json │ │ ├── vega_1313.vg.json │ │ ├── vega_1314.vg.json │ │ ├── vega_1315.vg.json │ │ ├── vega_1316.vg.json │ │ ├── vega_1317.vg.json │ │ ├── vega_1318.vg.json │ │ ├── vega_1319.vg.json │ │ ├── vega_1320.vg.json │ │ ├── vega_1321.vg.json │ │ ├── vega_1322.vg.json │ │ ├── vega_1323.vg.json │ │ ├── vega_1324.vg.json │ │ ├── vega_1325.vg.json │ │ ├── vega_1326.vg.json │ │ ├── vega_1327.vg.json │ │ ├── vega_1328.vg.json │ │ ├── vega_1329.vg.json │ │ ├── vega_1330.vg.json │ │ ├── vega_1331.vg.json │ │ ├── vega_1332.vg.json │ │ ├── vega_1333.vg.json │ │ ├── vega_1334.vg.json │ │ ├── vega_1335.vg.json │ │ ├── vega_1336.vg.json │ │ ├── vega_1337.vg.json │ │ ├── vega_1338.vg.json │ │ ├── vega_1339.vg.json │ │ ├── vega_1340.vg.json │ │ ├── vega_1341.vg.json │ │ ├── vega_1342.vg.json │ │ ├── vega_1343.vg.json │ │ ├── vega_1344.vg.json │ │ ├── vega_1345.vg.json │ │ ├── vega_1346.vg.json │ │ ├── vega_1347.vg.json │ │ ├── vega_1348.vg.json │ │ ├── vega_1349.vg.json │ │ ├── vega_1350.vg.json │ │ ├── vega_1351.vg.json │ │ ├── vega_1352.vg.json │ │ ├── vega_1353.vg.json │ │ ├── vega_1354.vg.json │ │ ├── vega_1355.vg.json │ │ ├── vega_1356.vg.json │ │ ├── vega_1357.vg.json │ │ ├── vega_1358.vg.json │ │ ├── vega_1359.vg.json │ │ ├── vega_1360.vg.json │ │ ├── vega_1361.vg.json │ │ ├── vega_1362.vg.json │ │ ├── vega_1363.vg.json │ │ ├── vega_1364.vg.json │ │ ├── vega_1365.vg.json │ │ ├── vega_1366.vg.json │ │ ├── vega_1367.vg.json │ │ ├── vega_1368.vg.json │ │ ├── vega_1369.vg.json │ │ ├── vega_1370.vg.json │ │ ├── vega_1371.vg.json │ │ ├── vega_1372.vg.json │ │ ├── vega_1373.vg.json │ │ ├── vega_1374.vg.json │ │ ├── vega_1375.vg.json │ │ ├── vega_1376.vg.json │ │ ├── vega_1377.vg.json │ │ ├── vega_1378.vg.json │ │ ├── vega_1379.vg.json │ │ ├── vega_1380.vg.json │ │ ├── vega_1381.vg.json │ │ ├── vega_1382.vg.json │ │ ├── vega_1383.vg.json │ │ ├── vega_1384.vg.json │ │ ├── vega_1385.vg.json │ │ ├── vega_1386.vg.json │ │ ├── vega_1387.vg.json │ │ ├── vega_1388.vg.json │ │ ├── vega_1389.vg.json │ │ ├── vega_1390.vg.json │ │ ├── vega_1391.vg.json │ │ ├── vega_1392.vg.json │ │ ├── vega_1393.vg.json │ │ ├── vega_1394.vg.json │ │ ├── vega_1395.vg.json │ │ ├── vega_1396.vg.json │ │ ├── vega_1397.vg.json │ │ ├── vega_1398.vg.json │ │ ├── vega_1399.vg.json │ │ ├── vega_1400.vg.json │ │ ├── vega_1401.vg.json │ │ ├── vega_1402.vg.json │ │ ├── vega_1403.vg.json │ │ ├── vega_1404.vg.json │ │ ├── vega_1405.vg.json │ │ ├── vega_1406.vg.json │ │ ├── vega_1407.vg.json │ │ ├── vega_1408.vg.json │ │ ├── vega_1409.vg.json │ │ ├── vega_1410.vg.json │ │ ├── vega_1411.vg.json │ │ ├── vega_1412.vg.json │ │ ├── vega_1413.vg.json │ │ ├── vega_1414.vg.json │ │ ├── vega_1415.vg.json │ │ ├── vega_1416.vg.json │ │ ├── vega_1417.vg.json │ │ ├── vega_1418.vg.json │ │ ├── vega_1419.vg.json │ │ ├── vega_1420.vg.json │ │ ├── vega_1421.vg.json │ │ ├── vega_1422.vg.json │ │ ├── vega_1423.vg.json │ │ ├── vega_1424.vg.json │ │ ├── vega_1425.vg.json │ │ ├── vega_1426.vg.json │ │ ├── vega_1427.vg.json │ │ ├── vega_1428.vg.json │ │ ├── vega_1429.vg.json │ │ ├── vega_1430.vg.json │ │ ├── vega_1431.vg.json │ │ ├── vega_1432.vg.json │ │ ├── vega_1433.vg.json │ │ ├── vega_1434.vg.json │ │ ├── vega_1435.vg.json │ │ ├── vega_1436.vg.json │ │ ├── vega_1437.vg.json │ │ ├── vega_1438.vg.json │ │ ├── vega_1439.vg.json │ │ ├── vega_1440.vg.json │ │ ├── vega_1441.vg.json │ │ ├── vega_1442.vg.json │ │ ├── vega_1443.vg.json │ │ ├── vega_1444.vg.json │ │ ├── vega_1445.vg.json │ │ ├── vega_1446.vg.json │ │ ├── vega_1447.vg.json │ │ ├── vega_1448.vg.json │ │ ├── vega_1449.vg.json │ │ ├── vega_1450.vg.json │ │ ├── vega_1451.vg.json │ │ ├── vega_1452.vg.json │ │ ├── vega_1453.vg.json │ │ ├── vega_1454.vg.json │ │ ├── vega_1455.vg.json │ │ ├── vega_1456.vg.json │ │ ├── vega_1457.vg.json │ │ ├── vega_1458.vg.json │ │ ├── vega_1459.vg.json │ │ ├── vega_1460.vg.json │ │ ├── vega_1461.vg.json │ │ ├── vega_1462.vg.json │ │ ├── vega_1463.vg.json │ │ ├── vega_1464.vg.json │ │ ├── vega_1465.vg.json │ │ ├── vega_1466.vg.json │ │ ├── vega_1467.vg.json │ │ ├── vega_1468.vg.json │ │ ├── vega_1469.vg.json │ │ ├── vega_1470.vg.json │ │ ├── vega_1471.vg.json │ │ ├── vega_1472.vg.json │ │ ├── vega_1473.vg.json │ │ ├── vega_1474.vg.json │ │ ├── vega_1475.vg.json │ │ ├── vega_1476.vg.json │ │ ├── vega_1477.vg.json │ │ ├── vega_1478.vg.json │ │ ├── vega_1479.vg.json │ │ ├── vega_1480.vg.json │ │ ├── vega_1481.vg.json │ │ ├── vega_1482.vg.json │ │ ├── vega_1483.vg.json │ │ ├── vega_1484.vg.json │ │ ├── vega_1485.vg.json │ │ ├── vega_1486.vg.json │ │ ├── vega_1487.vg.json │ │ ├── vega_1488.vg.json │ │ ├── vega_1489.vg.json │ │ ├── vega_1490.vg.json │ │ ├── vega_1491.vg.json │ │ ├── vega_1492.vg.json │ │ ├── vega_1493.vg.json │ │ ├── vega_1494.vg.json │ │ ├── vega_1495.vg.json │ │ ├── vega_1496.vg.json │ │ ├── vega_1497.vg.json │ │ ├── vega_1498.vg.json │ │ ├── vega_1499.vg.json │ │ ├── vega_1500.vg.json │ │ ├── vega_1501.vg.json │ │ ├── vega_1502.vg.json │ │ ├── vega_1503.vg.json │ │ ├── vega_1504.vg.json │ │ ├── vega_1505.vg.json │ │ ├── vega_1506.vg.json │ │ ├── vega_1507.vg.json │ │ ├── vega_1508.vg.json │ │ ├── vega_1509.vg.json │ │ ├── vega_1510.vg.json │ │ ├── vega_1511.vg.json │ │ ├── vega_1512.vg.json │ │ ├── vega_1513.vg.json │ │ ├── vega_1514.vg.json │ │ ├── vega_1515.vg.json │ │ ├── vega_1516.vg.json │ │ ├── vega_1517.vg.json │ │ ├── vega_1518.vg.json │ │ ├── vega_1519.vg.json │ │ ├── vega_1520.vg.json │ │ ├── vega_1521.vg.json │ │ ├── vega_1522.vg.json │ │ ├── vega_1524.vg.json │ │ ├── vega_1525.vg.json │ │ ├── vega_1526.vg.json │ │ ├── vega_1527.vg.json │ │ ├── vega_1528.vg.json │ │ ├── vega_1529.vg.json │ │ ├── vega_1530.vg.json │ │ ├── vega_1531.vg.json │ │ ├── vega_1532.vg.json │ │ ├── vega_1533.vg.json │ │ ├── vega_1534.vg.json │ │ ├── vega_1535.vg.json │ │ ├── vega_1536.vg.json │ │ ├── vega_1537.vg.json │ │ ├── vega_1538.vg.json │ │ ├── vega_1539.vg.json │ │ ├── vega_1540.vg.json │ │ ├── vega_1541.vg.json │ │ ├── vega_1542.vg.json │ │ ├── vega_1543.vg.json │ │ ├── vega_1544.vg.json │ │ ├── vega_1545.vg.json │ │ ├── vega_1546.vg.json │ │ ├── vega_1547.vg.json │ │ ├── vega_1548.vg.json │ │ ├── vega_1549.vg.json │ │ ├── vega_1550.vg.json │ │ ├── vega_1551.vg.json │ │ ├── vega_1552.vg.json │ │ ├── vega_1553.vg.json │ │ ├── vega_1554.vg.json │ │ ├── vega_1555.vg.json │ │ ├── vega_1556.vg.json │ │ ├── vega_1557.vg.json │ │ ├── vega_1558.vg.json │ │ ├── vega_1559.vg.json │ │ ├── vega_1560.vg.json │ │ ├── vega_1561.vg.json │ │ ├── vega_1562.vg.json │ │ ├── vega_1563.vg.json │ │ ├── vega_1564.vg.json │ │ ├── vega_1565.vg.json │ │ ├── vega_1566.vg.json │ │ ├── vega_1567.vg.json │ │ ├── vega_1568.vg.json │ │ ├── vega_1569.vg.json │ │ ├── vega_1570.vg.json │ │ ├── vega_1571.vg.json │ │ ├── vega_1572.vg.json │ │ ├── vega_1573.vg.json │ │ ├── vega_1574.vg.json │ │ ├── vega_1575.vg.json │ │ ├── vega_1576.vg.json │ │ ├── vega_1577.vg.json │ │ ├── vega_1578.vg.json │ │ ├── vega_1579.vg.json │ │ ├── vega_1580.vg.json │ │ ├── vega_1581.vg.json │ │ ├── vega_1582.vg.json │ │ ├── vega_1583.vg.json │ │ ├── vega_1584.vg.json │ │ ├── vega_1585.vg.json │ │ ├── vega_1586.vg.json │ │ ├── vega_1587.vg.json │ │ ├── vega_1588.vg.json │ │ ├── vega_1589.vg.json │ │ ├── vega_1590.vg.json │ │ ├── vega_1591.vg.json │ │ ├── vega_1592.vg.json │ │ ├── vega_1593.vg.json │ │ ├── vega_1594.vg.json │ │ ├── vega_1595.vg.json │ │ ├── vega_1596.vg.json │ │ ├── vega_1597.vg.json │ │ ├── vega_1598.vg.json │ │ ├── vega_1599.vg.json │ │ ├── vega_1600.vg.json │ │ ├── vega_1601.vg.json │ │ ├── vega_1602.vg.json │ │ ├── vega_1603.vg.json │ │ ├── vega_1604.vg.json │ │ ├── vega_1605.vg.json │ │ ├── vega_1606.vg.json │ │ ├── vega_1607.vg.json │ │ ├── vega_1608.vg.json │ │ ├── vega_1609.vg.json │ │ ├── vega_1610.vg.json │ │ ├── vega_1611.vg.json │ │ ├── vega_1612.vg.json │ │ ├── vega_1613.vg.json │ │ ├── vega_1614.vg.json │ │ ├── vega_1615.vg.json │ │ ├── vega_1616.vg.json │ │ ├── vega_1617.vg.json │ │ ├── vega_1618.vg.json │ │ ├── vega_1619.vg.json │ │ ├── vega_1620.vg.json │ │ ├── vega_1621.vg.json │ │ ├── vega_1622.vg.json │ │ ├── vega_1623.vg.json │ │ ├── vega_1624.vg.json │ │ ├── vega_1625.vg.json │ │ ├── vega_1626.vg.json │ │ ├── vega_1627.vg.json │ │ ├── vega_1628.vg.json │ │ ├── vega_1629.vg.json │ │ ├── vega_1630.vg.json │ │ ├── vega_1631.vg.json │ │ ├── vega_1632.vg.json │ │ ├── vega_1633.vg.json │ │ ├── vega_1634.vg.json │ │ ├── vega_1635.vg.json │ │ ├── vega_1636.vg.json │ │ ├── vega_1637.vg.json │ │ ├── vega_1638.vg.json │ │ ├── vega_1639.vg.json │ │ ├── vega_1640.vg.json │ │ ├── vega_1641.vg.json │ │ ├── vega_1642.vg.json │ │ ├── vega_1643.vg.json │ │ ├── vega_1644.vg.json │ │ ├── vega_1645.vg.json │ │ ├── vega_1646.vg.json │ │ ├── vega_1647.vg.json │ │ ├── vega_1648.vg.json │ │ ├── vega_1649.vg.json │ │ ├── vega_1650.vg.json │ │ ├── vega_1651.vg.json │ │ ├── vega_1652.vg.json │ │ ├── vega_1653.vg.json │ │ ├── vega_1654.vg.json │ │ ├── vega_1655.vg.json │ │ ├── vega_1656.vg.json │ │ ├── vega_1657.vg.json │ │ ├── vega_1658.vg.json │ │ ├── vega_1659.vg.json │ │ ├── vega_1660.vg.json │ │ ├── vega_1661.vg.json │ │ ├── vega_1662.vg.json │ │ ├── vega_1663.vg.json │ │ ├── vega_1664.vg.json │ │ ├── vega_1665.vg.json │ │ ├── vega_1666.vg.json │ │ ├── vega_1667.vg.json │ │ ├── vega_1668.vg.json │ │ ├── vega_1669.vg.json │ │ ├── vega_1670.vg.json │ │ ├── vega_1671.vg.json │ │ ├── vega_1672.vg.json │ │ ├── vega_1673.vg.json │ │ ├── vega_1674.vg.json │ │ ├── vega_1675.vg.json │ │ ├── vega_1676.vg.json │ │ ├── vega_1677.vg.json │ │ ├── vega_1678.vg.json │ │ ├── vega_1679.vg.json │ │ ├── vega_1680.vg.json │ │ ├── vega_1681.vg.json │ │ ├── vega_1682.vg.json │ │ ├── vega_1683.vg.json │ │ ├── vega_1684.vg.json │ │ ├── vega_1685.vg.json │ │ ├── vega_1686.vg.json │ │ ├── vega_1687.vg.json │ │ ├── vega_1688.vg.json │ │ ├── vega_1689.vg.json │ │ ├── vega_1690.vg.json │ │ ├── vega_1691.vg.json │ │ ├── vega_1692.vg.json │ │ ├── vega_1693.vg.json │ │ ├── vega_1694.vg.json │ │ ├── vega_1695.vg.json │ │ ├── vega_1696.vg.json │ │ ├── vega_1697.vg.json │ │ ├── vega_1698.vg.json │ │ ├── vega_1699.vg.json │ │ ├── vega_1700.vg.json │ │ ├── vega_1701.vg.json │ │ ├── vega_1702.vg.json │ │ ├── vega_1703.vg.json │ │ ├── vega_1704.vg.json │ │ ├── vega_1705.vg.json │ │ ├── vega_1706.vg.json │ │ ├── vega_1707.vg.json │ │ ├── vega_1708.vg.json │ │ ├── vega_1709.vg.json │ │ ├── vega_1710.vg.json │ │ ├── vega_1711.vg.json │ │ ├── vega_1712.vg.json │ │ ├── vega_1713.vg.json │ │ ├── vega_1714.vg.json │ │ ├── vega_1715.vg.json │ │ ├── vega_1716.vg.json │ │ ├── vega_1717.vg.json │ │ ├── vega_1718.vg.json │ │ ├── vega_1719.vg.json │ │ ├── vega_1720.vg.json │ │ ├── vega_1721.vg.json │ │ ├── vega_1722.vg.json │ │ ├── vega_1723.vg.json │ │ ├── vega_1724.vg.json │ │ ├── vega_1725.vg.json │ │ ├── vega_1726.vg.json │ │ ├── vega_1727.vg.json │ │ ├── vega_1728.vg.json │ │ ├── vega_1729.vg.json │ │ ├── vega_1730.vg.json │ │ ├── vega_1731.vg.json │ │ ├── vega_1732.vg.json │ │ ├── vega_1733.vg.json │ │ ├── vega_1734.vg.json │ │ ├── vega_1735.vg.json │ │ ├── vega_1736.vg.json │ │ ├── vega_1737.vg.json │ │ ├── vega_1738.vg.json │ │ ├── vega_1739.vg.json │ │ ├── vega_1740.vg.json │ │ ├── vega_1741.vg.json │ │ ├── vega_1742.vg.json │ │ ├── vega_1743.vg.json │ │ ├── vega_1744.vg.json │ │ ├── vega_1745.vg.json │ │ ├── vega_1746.vg.json │ │ ├── vega_1747.vg.json │ │ ├── vega_1748.vg.json │ │ ├── vega_1750.vg.json │ │ ├── vega_1751.vg.json │ │ ├── vega_1752.vg.json │ │ ├── vega_1753.vg.json │ │ ├── vega_1754.vg.json │ │ ├── vega_1755.vg.json │ │ ├── vega_1756.vg.json │ │ ├── vega_1757.vg.json │ │ ├── vega_1758.vg.json │ │ ├── vega_1759.vg.json │ │ ├── vega_1760.vg.json │ │ ├── vega_1761.vg.json │ │ ├── vega_1762.vg.json │ │ ├── vega_1763.vg.json │ │ ├── vega_1764.vg.json │ │ ├── vega_1765.vg.json │ │ ├── vega_1766.vg.json │ │ ├── vega_1767.vg.json │ │ ├── vega_1768.vg.json │ │ ├── vega_1769.vg.json │ │ ├── vega_1770.vg.json │ │ ├── vega_1771.vg.json │ │ ├── vega_1772.vg.json │ │ ├── vega_1773.vg.json │ │ ├── vega_1774.vg.json │ │ ├── vega_1775.vg.json │ │ ├── vega_1776.vg.json │ │ ├── vega_1777.vg.json │ │ ├── vega_1778.vg.json │ │ ├── vega_1779.vg.json │ │ ├── vega_1780.vg.json │ │ ├── vega_1781.vg.json │ │ ├── vega_1782.vg.json │ │ ├── vega_1783.vg.json │ │ ├── vega_1784.vg.json │ │ ├── vega_1785.vg.json │ │ ├── vega_1786.vg.json │ │ ├── vega_1787.vg.json │ │ ├── vega_1788.vg.json │ │ ├── vega_1789.vg.json │ │ ├── vega_1790.vg.json │ │ ├── vega_1791.vg.json │ │ ├── vega_1792.vg.json │ │ ├── vega_1793.vg.json │ │ ├── vega_1794.vg.json │ │ ├── vega_1795.vg.json │ │ ├── vega_1796.vg.json │ │ ├── vega_1797.vg.json │ │ ├── vega_1798.vg.json │ │ ├── vega_1799.vg.json │ │ ├── vega_1800.vg.json │ │ ├── vega_1801.vg.json │ │ ├── vega_1802.vg.json │ │ ├── vega_1803.vg.json │ │ ├── vega_1804.vg.json │ │ ├── vega_1805.vg.json │ │ ├── vega_1806.vg.json │ │ ├── vega_1807.vg.json │ │ ├── vega_1808.vg.json │ │ ├── vega_1809.vg.json │ │ ├── vega_1810.vg.json │ │ ├── vega_1811.vg.json │ │ ├── vega_1812.vg.json │ │ ├── vega_1813.vg.json │ │ ├── vega_1814.vg.json │ │ ├── vega_1815.vg.json │ │ ├── vega_1816.vg.json │ │ ├── vega_1817.vg.json │ │ ├── vega_1818.vg.json │ │ ├── vega_1819.vg.json │ │ ├── vega_1820.vg.json │ │ ├── vega_1821.vg.json │ │ ├── vega_1822.vg.json │ │ ├── vega_1823.vg.json │ │ ├── vega_1824.vg.json │ │ ├── vega_1825.vg.json │ │ ├── vega_1826.vg.json │ │ ├── vega_1827.vg.json │ │ ├── vega_1828.vg.json │ │ ├── vega_1829.vg.json │ │ ├── vega_1830.vg.json │ │ ├── vega_1831.vg.json │ │ ├── vega_1832.vg.json │ │ ├── vega_1833.vg.json │ │ ├── vega_1834.vg.json │ │ ├── vega_1835.vg.json │ │ ├── vega_1836.vg.json │ │ ├── vega_1837.vg.json │ │ ├── vega_1838.vg.json │ │ ├── vega_1839.vg.json │ │ ├── vega_1840.vg.json │ │ ├── vega_1841.vg.json │ │ ├── vega_1842.vg.json │ │ ├── vega_1843.vg.json │ │ ├── vega_1844.vg.json │ │ ├── vega_1845.vg.json │ │ ├── vega_1846.vg.json │ │ ├── vega_1847.vg.json │ │ ├── vega_1848.vg.json │ │ ├── vega_1849.vg.json │ │ ├── vega_1850.vg.json │ │ ├── vega_1851.vg.json │ │ ├── vega_1852.vg.json │ │ ├── vega_1853.vg.json │ │ ├── vega_1854.vg.json │ │ ├── vega_1855.vg.json │ │ ├── vega_1856.vg.json │ │ ├── vega_1857.vg.json │ │ ├── vega_1858.vg.json │ │ ├── vega_1859.vg.json │ │ ├── vega_1860.vg.json │ │ ├── vega_1861.vg.json │ │ ├── vega_1862.vg.json │ │ ├── vega_1863.vg.json │ │ ├── vega_1864.vg.json │ │ ├── vega_1865.vg.json │ │ ├── vega_1866.vg.json │ │ ├── vega_1867.vg.json │ │ ├── vega_1868.vg.json │ │ ├── vega_1869.vg.json │ │ ├── vega_1870.vg.json │ │ ├── vega_1871.vg.json │ │ ├── vega_1872.vg.json │ │ ├── vega_1873.vg.json │ │ ├── vega_1874.vg.json │ │ ├── vega_1875.vg.json │ │ ├── vega_1876.vg.json │ │ ├── vega_1877.vg.json │ │ ├── vega_1878.vg.json │ │ ├── vega_1879.vg.json │ │ ├── vega_1880.vg.json │ │ ├── vega_1881.vg.json │ │ ├── vega_1882.vg.json │ │ ├── vega_1883.vg.json │ │ ├── vega_1884.vg.json │ │ ├── vega_1885.vg.json │ │ ├── vega_1886.vg.json │ │ ├── vega_1887.vg.json │ │ ├── vega_1888.vg.json │ │ ├── vega_1889.vg.json │ │ ├── vega_1890.vg.json │ │ ├── vega_1891.vg.json │ │ ├── vega_1892.vg.json │ │ ├── vega_1893.vg.json │ │ ├── vega_1894.vg.json │ │ ├── vega_1895.vg.json │ │ ├── vega_1896.vg.json │ │ ├── vega_1897.vg.json │ │ ├── vega_1898.vg.json │ │ ├── vega_1899.vg.json │ │ ├── vega_1900.vg.json │ │ ├── vega_1901.vg.json │ │ ├── vega_1902.vg.json │ │ ├── vega_1903.vg.json │ │ ├── vega_1904.vg.json │ │ ├── vega_1905.vg.json │ │ ├── vega_1906.vg.json │ │ ├── vega_1907.vg.json │ │ ├── vega_1908.vg.json │ │ ├── vega_1909.vg.json │ │ ├── vega_1910.vg.json │ │ ├── vega_1911.vg.json │ │ ├── vega_1912.vg.json │ │ ├── vega_1913.vg.json │ │ ├── vega_1914.vg.json │ │ ├── vega_1915.vg.json │ │ ├── vega_1916.vg.json │ │ ├── vega_1917.vg.json │ │ ├── vega_1918.vg.json │ │ ├── vega_1919.vg.json │ │ ├── vega_1920.vg.json │ │ ├── vega_1921.vg.json │ │ ├── vega_1922.vg.json │ │ ├── vega_1923.vg.json │ │ ├── vega_1924.vg.json │ │ ├── vega_1925.vg.json │ │ ├── vega_1926.vg.json │ │ ├── vega_1927.vg.json │ │ ├── vega_1928.vg.json │ │ ├── vega_1929.vg.json │ │ ├── vega_1930.vg.json │ │ ├── vega_1931.vg.json │ │ ├── vega_1932.vg.json │ │ ├── vega_1933.vg.json │ │ ├── vega_1934.vg.json │ │ ├── vega_1935.vg.json │ │ ├── vega_1936.vg.json │ │ ├── vega_1937.vg.json │ │ ├── vega_1938.vg.json │ │ ├── vega_1939.vg.json │ │ ├── vega_1940.vg.json │ │ ├── vega_1941.vg.json │ │ ├── vega_1942.vg.json │ │ ├── vega_1943.vg.json │ │ ├── vega_1944.vg.json │ │ ├── vega_1945.vg.json │ │ ├── vega_1946.vg.json │ │ ├── vega_1947.vg.json │ │ ├── vega_1948.vg.json │ │ ├── vega_1949.vg.json │ │ ├── vega_1950.vg.json │ │ ├── vega_1951.vg.json │ │ ├── vega_1952.vg.json │ │ ├── vega_1953.vg.json │ │ ├── vega_1954.vg.json │ │ ├── vega_1955.vg.json │ │ ├── vega_1956.vg.json │ │ ├── vega_1957.vg.json │ │ ├── vega_1958.vg.json │ │ ├── vega_1959.vg.json │ │ ├── vega_1960.vg.json │ │ ├── vega_1961.vg.json │ │ ├── vega_1962.vg.json │ │ ├── vega_1963.vg.json │ │ ├── vega_1964.vg.json │ │ ├── vega_1965.vg.json │ │ ├── vega_1966.vg.json │ │ ├── vega_1967.vg.json │ │ ├── vega_1968.vg.json │ │ ├── vega_1969.vg.json │ │ ├── vega_1970.vg.json │ │ ├── vega_1971.vg.json │ │ ├── vega_1972.vg.json │ │ ├── vega_1973.vg.json │ │ ├── vega_1974.vg.json │ │ ├── vega_1975.vg.json │ │ ├── vega_1976.vg.json │ │ ├── vega_1977.vg.json │ │ ├── vega_1978.vg.json │ │ ├── vega_1979.vg.json │ │ ├── vega_1980.vg.json │ │ ├── vega_1981.vg.json │ │ ├── vega_1982.vg.json │ │ ├── vega_1983.vg.json │ │ ├── vega_1984.vg.json │ │ ├── vega_1985.vg.json │ │ ├── vega_1986.vg.json │ │ ├── vega_1987.vg.json │ │ ├── vega_1988.vg.json │ │ ├── vega_1989.vg.json │ │ ├── vega_1990.vg.json │ │ ├── vega_1991.vg.json │ │ ├── vega_1992.vg.json │ │ ├── vega_1993.vg.json │ │ ├── vega_1994.vg.json │ │ ├── vega_1995.vg.json │ │ ├── vega_1996.vg.json │ │ ├── vega_1997.vg.json │ │ ├── vega_1998.vg.json │ │ ├── vega_1999.vg.json │ │ ├── vega_2000.vg.json │ │ ├── vega_2001.vg.json │ │ ├── vega_2002.vg.json │ │ ├── vega_2003.vg.json │ │ ├── vega_2004.vg.json │ │ ├── vega_2005.vg.json │ │ ├── vega_2006.vg.json │ │ ├── vega_2007.vg.json │ │ ├── vega_2008.vg.json │ │ ├── vega_2009.vg.json │ │ ├── vega_2010.vg.json │ │ ├── vega_2011.vg.json │ │ ├── vega_2012.vg.json │ │ ├── vega_2013.vg.json │ │ ├── vega_2014.vg.json │ │ ├── vega_2015.vg.json │ │ ├── vega_2016.vg.json │ │ ├── vega_2017.vg.json │ │ ├── vega_2018.vg.json │ │ ├── vega_2019.vg.json │ │ ├── vega_2020.vg.json │ │ ├── vega_2021.vg.json │ │ ├── vega_2022.vg.json │ │ ├── vega_2023.vg.json │ │ ├── vega_2024.vg.json │ │ ├── vega_2025.vg.json │ │ ├── vega_2026.vg.json │ │ ├── vega_2027.vg.json │ │ ├── vega_2028.vg.json │ │ ├── vega_2029.vg.json │ │ ├── vega_2030.vg.json │ │ ├── vega_2031.vg.json │ │ ├── vega_2032.vg.json │ │ ├── vega_2033.vg.json │ │ ├── vega_2034.vg.json │ │ ├── vega_2035.vg.json │ │ ├── vega_2036.vg.json │ │ ├── vega_2037.vg.json │ │ ├── vega_2038.vg.json │ │ ├── vega_2039.vg.json │ │ ├── vega_2040.vg.json │ │ ├── vega_2041.vg.json │ │ ├── vega_2042.vg.json │ │ ├── vega_2043.vg.json │ │ ├── vega_2044.vg.json │ │ ├── vega_2045.vg.json │ │ ├── vega_2046.vg.json │ │ ├── vega_2047.vg.json │ │ ├── vega_2048.vg.json │ │ ├── vega_2049.vg.json │ │ ├── vega_2050.vg.json │ │ ├── vega_2051.vg.json │ │ ├── vega_2052.vg.json │ │ ├── vega_2053.vg.json │ │ ├── vega_2054.vg.json │ │ ├── vega_2055.vg.json │ │ ├── vega_2056.vg.json │ │ ├── vega_2057.vg.json │ │ ├── vega_2058.vg.json │ │ ├── vega_2059.vg.json │ │ ├── vega_2060.vg.json │ │ ├── vega_2061.vg.json │ │ ├── vega_2062.vg.json │ │ ├── vega_2063.vg.json │ │ ├── vega_2064.vg.json │ │ ├── vega_2065.vg.json │ │ ├── vega_2066.vg.json │ │ ├── vega_2067.vg.json │ │ ├── vega_2068.vg.json │ │ ├── vega_2069.vg.json │ │ ├── vega_2070.vg.json │ │ ├── vega_2071.vg.json │ │ ├── vega_2072.vg.json │ │ ├── vega_2073.vg.json │ │ ├── vega_2074.vg.json │ │ ├── vega_2075.vg.json │ │ ├── vega_2076.vg.json │ │ ├── vega_2077.vg.json │ │ ├── vega_2078.vg.json │ │ ├── vega_2079.vg.json │ │ ├── vega_2080.vg.json │ │ ├── vega_2081.vg.json │ │ ├── vega_2082.vg.json │ │ ├── vega_2083.vg.json │ │ ├── vega_2084.vg.json │ │ ├── vega_2085.vg.json │ │ ├── vega_2086.vg.json │ │ ├── vega_2087.vg.json │ │ ├── vega_2088.vg.json │ │ ├── vega_2089.vg.json │ │ ├── vega_2090.vg.json │ │ ├── vega_2091.vg.json │ │ ├── vega_2092.vg.json │ │ ├── vega_2093.vg.json │ │ ├── vega_2094.vg.json │ │ ├── vega_2095.vg.json │ │ ├── vega_2096.vg.json │ │ ├── vega_2097.vg.json │ │ ├── vega_2098.vg.json │ │ ├── vega_2099.vg.json │ │ ├── vega_2100.vg.json │ │ ├── vega_2101.vg.json │ │ ├── vega_2102.vg.json │ │ ├── vega_2103.vg.json │ │ ├── vega_2104.vg.json │ │ ├── vega_2105.vg.json │ │ ├── vega_2106.vg.json │ │ ├── vega_2107.vg.json │ │ ├── vega_2108.vg.json │ │ ├── vega_2109.vg.json │ │ ├── vega_2110.vg.json │ │ ├── vega_2111.vg.json │ │ ├── vega_2112.vg.json │ │ ├── vega_2113.vg.json │ │ ├── vega_2114.vg.json │ │ ├── vega_2115.vg.json │ │ ├── vega_2116.vg.json │ │ ├── vega_2117.vg.json │ │ ├── vega_2118.vg.json │ │ ├── vega_2119.vg.json │ │ ├── vega_2120.vg.json │ │ ├── vega_2121.vg.json │ │ ├── vega_2122.vg.json │ │ ├── vega_2123.vg.json │ │ ├── vega_2124.vg.json │ │ ├── vega_2125.vg.json │ │ ├── vega_2126.vg.json │ │ ├── vega_2127.vg.json │ │ ├── vega_2128.vg.json │ │ ├── vega_2129.vg.json │ │ ├── vega_2130.vg.json │ │ ├── vega_2131.vg.json │ │ ├── vega_2132.vg.json │ │ ├── vega_2133.vg.json │ │ ├── vega_2134.vg.json │ │ ├── vega_2135.vg.json │ │ ├── vega_2136.vg.json │ │ ├── vega_2137.vg.json │ │ ├── vega_2138.vg.json │ │ ├── vega_2139.vg.json │ │ ├── vega_2140.vg.json │ │ ├── vega_2141.vg.json │ │ ├── vega_2142.vg.json │ │ ├── vega_2143.vg.json │ │ ├── vega_2144.vg.json │ │ ├── vega_2145.vg.json │ │ ├── vega_2146.vg.json │ │ ├── vega_2147.vg.json │ │ ├── vega_2148.vg.json │ │ ├── vega_2149.vg.json │ │ ├── vega_2150.vg.json │ │ ├── vega_2151.vg.json │ │ ├── vega_2152.vg.json │ │ ├── vega_2153.vg.json │ │ ├── vega_2154.vg.json │ │ ├── vega_2155.vg.json │ │ ├── vega_2156.vg.json │ │ ├── vega_2157.vg.json │ │ ├── vega_2158.vg.json │ │ ├── vega_2159.vg.json │ │ ├── vega_2160.vg.json │ │ ├── vega_2161.vg.json │ │ ├── vega_2162.vg.json │ │ ├── vega_2163.vg.json │ │ ├── vega_2164.vg.json │ │ ├── vega_2165.vg.json │ │ ├── vega_2166.vg.json │ │ ├── vega_2167.vg.json │ │ ├── vega_2168.vg.json │ │ ├── vega_2169.vg.json │ │ ├── vega_2170.vg.json │ │ ├── vega_2171.vg.json │ │ ├── vega_2172.vg.json │ │ ├── vega_2173.vg.json │ │ ├── vega_2174.vg.json │ │ ├── vega_2175.vg.json │ │ ├── vega_2176.vg.json │ │ ├── vega_2177.vg.json │ │ ├── vega_2178.vg.json │ │ ├── vega_2179.vg.json │ │ ├── vega_2180.vg.json │ │ ├── vega_2181.vg.json │ │ ├── vega_2182.vg.json │ │ ├── vega_2183.vg.json │ │ ├── vega_2184.vg.json │ │ ├── vega_2185.vg.json │ │ ├── vega_2186.vg.json │ │ ├── vega_2187.vg.json │ │ ├── vega_2188.vg.json │ │ ├── vega_2189.vg.json │ │ ├── vega_2190.vg.json │ │ ├── vega_2191.vg.json │ │ ├── vega_2192.vg.json │ │ ├── vega_2193.vg.json │ │ ├── vega_2194.vg.json │ │ ├── vega_2195.vg.json │ │ ├── vega_2196.vg.json │ │ ├── vega_2197.vg.json │ │ ├── vega_2198.vg.json │ │ ├── vega_2199.vg.json │ │ ├── vega_2200.vg.json │ │ ├── vega_2201.vg.json │ │ ├── vega_2202.vg.json │ │ ├── vega_2203.vg.json │ │ ├── vega_2204.vg.json │ │ ├── vega_2205.vg.json │ │ ├── vega_2206.vg.json │ │ ├── vega_2207.vg.json │ │ ├── vega_2208.vg.json │ │ ├── vega_2209.vg.json │ │ ├── vega_2210.vg.json │ │ ├── vega_2211.vg.json │ │ ├── vega_2212.vg.json │ │ ├── vega_2213.vg.json │ │ ├── vega_2214.vg.json │ │ ├── vega_2215.vg.json │ │ ├── vega_2216.vg.json │ │ ├── vega_2217.vg.json │ │ ├── vega_2218.vg.json │ │ ├── vega_2219.vg.json │ │ ├── vega_2220.vg.json │ │ ├── vega_2221.vg.json │ │ ├── vega_2222.vg.json │ │ ├── vega_2223.vg.json │ │ ├── vega_2224.vg.json │ │ ├── vega_2225.vg.json │ │ ├── vega_2226.vg.json │ │ ├── vega_2227.vg.json │ │ ├── vega_2228.vg.json │ │ ├── vega_2229.vg.json │ │ ├── vega_2230.vg.json │ │ ├── vega_2231.vg.json │ │ ├── vega_2232.vg.json │ │ ├── vega_2233.vg.json │ │ ├── vega_2234.vg.json │ │ ├── vega_2235.vg.json │ │ ├── vega_2236.vg.json │ │ ├── vega_2237.vg.json │ │ ├── vega_2238.vg.json │ │ ├── vega_2239.vg.json │ │ ├── vega_2240.vg.json │ │ ├── vega_2241.vg.json │ │ ├── vega_2242.vg.json │ │ ├── vega_2243.vg.json │ │ ├── vega_2244.vg.json │ │ ├── vega_2245.vg.json │ │ ├── vega_2246.vg.json │ │ ├── vega_2247.vg.json │ │ ├── vega_2248.vg.json │ │ ├── vega_2249.vg.json │ │ ├── vega_2250.vg.json │ │ ├── vega_2251.vg.json │ │ ├── vega_2252.vg.json │ │ ├── vega_2253.vg.json │ │ ├── vega_2254.vg.json │ │ ├── vega_2255.vg.json │ │ ├── vega_2256.vg.json │ │ ├── vega_2257.vg.json │ │ ├── vega_2258.vg.json │ │ ├── vega_2259.vg.json │ │ ├── vega_2260.vg.json │ │ ├── vega_2261.vg.json │ │ ├── vega_2262.vg.json │ │ ├── vega_2263.vg.json │ │ ├── vega_2264.vg.json │ │ ├── vega_2265.vg.json │ │ ├── vega_2266.vg.json │ │ ├── vega_2267.vg.json │ │ ├── vega_2268.vg.json │ │ ├── vega_2269.vg.json │ │ ├── vega_2270.vg.json │ │ ├── vega_2271.vg.json │ │ ├── vega_2272.vg.json │ │ ├── vega_2273.vg.json │ │ ├── vega_2274.vg.json │ │ ├── vega_2275.vg.json │ │ ├── vega_2276.vg.json │ │ ├── vega_2277.vg.json │ │ ├── vega_2278.vg.json │ │ ├── vega_2279.vg.json │ │ ├── vega_2280.vg.json │ │ ├── vega_2281.vg.json │ │ ├── vega_2282.vg.json │ │ ├── vega_2283.vg.json │ │ ├── vega_2284.vg.json │ │ ├── vega_2285.vg.json │ │ ├── vega_2286.vg.json │ │ ├── vega_2287.vg.json │ │ ├── vega_2288.vg.json │ │ ├── vega_2289.vg.json │ │ ├── vega_2290.vg.json │ │ ├── vega_2291.vg.json │ │ ├── vega_2292.vg.json │ │ ├── vega_2293.vg.json │ │ ├── vega_2294.vg.json │ │ ├── vega_2295.vg.json │ │ ├── vega_2296.vg.json │ │ ├── vega_2297.vg.json │ │ ├── vega_2298.vg.json │ │ ├── vega_2299.vg.json │ │ ├── vega_2300.vg.json │ │ ├── vega_2301.vg.json │ │ ├── vega_2302.vg.json │ │ ├── vega_2303.vg.json │ │ ├── vega_2304.vg.json │ │ ├── vega_2305.vg.json │ │ ├── vega_2306.vg.json │ │ ├── vega_2307.vg.json │ │ ├── vega_2308.vg.json │ │ ├── vega_2309.vg.json │ │ ├── vega_2310.vg.json │ │ ├── vega_2311.vg.json │ │ ├── vega_2312.vg.json │ │ ├── vega_2313.vg.json │ │ ├── vega_2314.vg.json │ │ ├── vega_2315.vg.json │ │ ├── vega_2316.vg.json │ │ ├── vega_2317.vg.json │ │ ├── vega_2318.vg.json │ │ ├── vega_2319.vg.json │ │ ├── vega_2320.vg.json │ │ ├── vega_2321.vg.json │ │ ├── vega_2322.vg.json │ │ ├── vega_2323.vg.json │ │ ├── vega_2324.vg.json │ │ ├── vega_2325.vg.json │ │ ├── vega_2326.vg.json │ │ ├── vega_2327.vg.json │ │ ├── vega_2328.vg.json │ │ ├── vega_2329.vg.json │ │ ├── vega_2330.vg.json │ │ ├── vega_2331.vg.json │ │ ├── vega_2332.vg.json │ │ ├── vega_2333.vg.json │ │ ├── vega_2334.vg.json │ │ ├── vega_2335.vg.json │ │ ├── vega_2336.vg.json │ │ ├── vega_2337.vg.json │ │ ├── vega_2338.vg.json │ │ ├── vega_2339.vg.json │ │ ├── vega_2340.vg.json │ │ ├── vega_2341.vg.json │ │ ├── vega_2342.vg.json │ │ ├── vega_2343.vg.json │ │ ├── vega_2344.vg.json │ │ ├── vega_2345.vg.json │ │ ├── vega_2346.vg.json │ │ ├── vega_2347.vg.json │ │ ├── vega_2348.vg.json │ │ ├── vega_2349.vg.json │ │ ├── vega_2350.vg.json │ │ ├── vega_2351.vg.json │ │ ├── vega_2352.vg.json │ │ ├── vega_2353.vg.json │ │ ├── vega_2354.vg.json │ │ ├── vega_2355.vg.json │ │ ├── vega_2356.vg.json │ │ ├── vega_2357.vg.json │ │ ├── vega_2358.vg.json │ │ ├── vega_2359.vg.json │ │ ├── vega_2360.vg.json │ │ ├── vega_2361.vg.json │ │ ├── vega_2362.vg.json │ │ ├── vega_2363.vg.json │ │ ├── vega_2364.vg.json │ │ ├── vega_2365.vg.json │ │ ├── vega_2366.vg.json │ │ ├── vega_2367.vg.json │ │ ├── vega_2368.vg.json │ │ ├── vega_2369.vg.json │ │ ├── vega_2370.vg.json │ │ ├── vega_2371.vg.json │ │ ├── vega_2372.vg.json │ │ ├── vega_2373.vg.json │ │ ├── vega_2374.vg.json │ │ ├── vega_2375.vg.json │ │ ├── vega_2376.vg.json │ │ ├── vega_2377.vg.json │ │ ├── vega_2378.vg.json │ │ ├── vega_2379.vg.json │ │ ├── vega_2380.vg.json │ │ ├── vega_2381.vg.json │ │ ├── vega_2382.vg.json │ │ ├── vega_2383.vg.json │ │ ├── vega_2384.vg.json │ │ ├── vega_2385.vg.json │ │ ├── vega_2386.vg.json │ │ ├── vega_2387.vg.json │ │ ├── vega_2388.vg.json │ │ ├── vega_2389.vg.json │ │ ├── vega_2390.vg.json │ │ ├── vega_2391.vg.json │ │ ├── vega_2392.vg.json │ │ ├── vega_2393.vg.json │ │ ├── vega_2394.vg.json │ │ ├── vega_2395.vg.json │ │ ├── vega_2396.vg.json │ │ ├── vega_2397.vg.json │ │ ├── vega_2398.vg.json │ │ ├── vega_2399.vg.json │ │ ├── vega_2400.vg.json │ │ ├── vega_2401.vg.json │ │ ├── vega_2402.vg.json │ │ ├── vega_2403.vg.json │ │ ├── vega_2404.vg.json │ │ ├── vega_2405.vg.json │ │ ├── vega_2406.vg.json │ │ ├── vega_2407.vg.json │ │ ├── vega_2408.vg.json │ │ ├── vega_2409.vg.json │ │ ├── vega_2410.vg.json │ │ ├── vega_2411.vg.json │ │ ├── vega_2412.vg.json │ │ ├── vega_2413.vg.json │ │ ├── vega_2414.vg.json │ │ ├── vega_2415.vg.json │ │ ├── vega_2416.vg.json │ │ ├── vega_2417.vg.json │ │ ├── vega_2418.vg.json │ │ ├── vega_2419.vg.json │ │ ├── vega_2420.vg.json │ │ ├── vega_2421.vg.json │ │ ├── vega_2422.vg.json │ │ ├── vega_2423.vg.json │ │ ├── vega_2424.vg.json │ │ ├── vega_2425.vg.json │ │ ├── vega_2426.vg.json │ │ ├── vega_2427.vg.json │ │ ├── vega_2428.vg.json │ │ ├── vega_2429.vg.json │ │ ├── vega_2430.vg.json │ │ ├── vega_2431.vg.json │ │ ├── vega_2432.vg.json │ │ ├── vega_2433.vg.json │ │ ├── vega_2434.vg.json │ │ ├── vega_2435.vg.json │ │ ├── vega_2436.vg.json │ │ ├── vega_2437.vg.json │ │ ├── vega_2438.vg.json │ │ ├── vega_2439.vg.json │ │ ├── vega_2440.vg.json │ │ ├── vega_2441.vg.json │ │ ├── vega_2442.vg.json │ │ ├── vega_2443.vg.json │ │ ├── vega_2444.vg.json │ │ ├── vega_2445.vg.json │ │ ├── vega_2446.vg.json │ │ ├── vega_2447.vg.json │ │ ├── vega_2448.vg.json │ │ ├── vega_2449.vg.json │ │ ├── vega_2450.vg.json │ │ ├── vega_2451.vg.json │ │ ├── vega_2452.vg.json │ │ ├── vega_2453.vg.json │ │ ├── vega_2454.vg.json │ │ ├── vega_2455.vg.json │ │ ├── vega_2456.vg.json │ │ ├── vega_2457.vg.json │ │ ├── vega_2458.vg.json │ │ ├── vega_2459.vg.json │ │ ├── vega_2460.vg.json │ │ ├── vega_2461.vg.json │ │ ├── vega_2462.vg.json │ │ ├── vega_2463.vg.json │ │ ├── vega_2464.vg.json │ │ ├── vega_2465.vg.json │ │ ├── vega_2466.vg.json │ │ ├── vega_2467.vg.json │ │ ├── vega_2468.vg.json │ │ ├── vega_2469.vg.json │ │ ├── vega_2470.vg.json │ │ ├── vega_2471.vg.json │ │ ├── vega_2472.vg.json │ │ ├── vega_2473.vg.json │ │ ├── vega_2474.vg.json │ │ ├── vega_2475.vg.json │ │ ├── vega_2476.vg.json │ │ ├── vega_2477.vg.json │ │ ├── vega_2478.vg.json │ │ ├── vega_2479.vg.json │ │ ├── vega_2480.vg.json │ │ ├── vega_2481.vg.json │ │ ├── vega_2482.vg.json │ │ ├── vega_2483.vg.json │ │ ├── vega_2484.vg.json │ │ ├── vega_2485.vg.json │ │ ├── vega_2486.vg.json │ │ ├── vega_2487.vg.json │ │ ├── vega_2488.vg.json │ │ ├── vega_2489.vg.json │ │ ├── vega_2490.vg.json │ │ ├── vega_2491.vg.json │ │ ├── vega_2492.vg.json │ │ ├── vega_2493.vg.json │ │ ├── vega_2494.vg.json │ │ ├── vega_2495.vg.json │ │ ├── vega_2496.vg.json │ │ ├── vega_2497.vg.json │ │ ├── vega_2498.vg.json │ │ ├── vega_2499.vg.json │ │ ├── vega_2500.vg.json │ │ ├── vega_2501.vg.json │ │ ├── vega_2502.vg.json │ │ ├── vega_2503.vg.json │ │ ├── vega_2504.vg.json │ │ ├── vega_2505.vg.json │ │ ├── vega_2506.vg.json │ │ ├── vega_2507.vg.json │ │ ├── vega_2508.vg.json │ │ ├── vega_2509.vg.json │ │ ├── vega_2510.vg.json │ │ ├── vega_2511.vg.json │ │ ├── vega_2512.vg.json │ │ ├── vega_2513.vg.json │ │ ├── vega_2514.vg.json │ │ ├── vega_2515.vg.json │ │ ├── vega_2516.vg.json │ │ ├── vega_2517.vg.json │ │ ├── vega_2518.vg.json │ │ ├── vega_2519.vg.json │ │ ├── vega_2520.vg.json │ │ ├── vega_2521.vg.json │ │ ├── vega_2522.vg.json │ │ ├── vega_2523.vg.json │ │ ├── vega_2524.vg.json │ │ ├── vega_2525.vg.json │ │ ├── vega_2526.vg.json │ │ ├── vega_2527.vg.json │ │ ├── vega_2528.vg.json │ │ ├── vega_2529.vg.json │ │ ├── vega_2530.vg.json │ │ ├── vega_2531.vg.json │ │ ├── vega_2532.vg.json │ │ ├── vega_2533.vg.json │ │ ├── vega_2534.vg.json │ │ ├── vega_2535.vg.json │ │ ├── vega_2536.vg.json │ │ ├── vega_2537.vg.json │ │ ├── vega_2538.vg.json │ │ ├── vega_2539.vg.json │ │ ├── vega_2540.vg.json │ │ ├── vega_2541.vg.json │ │ ├── vega_2542.vg.json │ │ ├── vega_2543.vg.json │ │ ├── vega_2544.vg.json │ │ ├── vega_2545.vg.json │ │ ├── vega_2546.vg.json │ │ ├── vega_2547.vg.json │ │ ├── vega_2548.vg.json │ │ ├── vega_2549.vg.json │ │ ├── vega_2550.vg.json │ │ ├── vega_2551.vg.json │ │ ├── vega_2552.vg.json │ │ ├── vega_2553.vg.json │ │ ├── vega_2554.vg.json │ │ ├── vega_2555.vg.json │ │ ├── vega_2556.vg.json │ │ ├── vega_2557.vg.json │ │ ├── vega_2558.vg.json │ │ ├── vega_2559.vg.json │ │ ├── vega_2560.vg.json │ │ ├── vega_2561.vg.json │ │ ├── vega_2562.vg.json │ │ ├── vega_2563.vg.json │ │ ├── vega_2564.vg.json │ │ ├── vega_2565.vg.json │ │ ├── vega_2566.vg.json │ │ ├── vega_2567.vg.json │ │ ├── vega_2568.vg.json │ │ ├── vega_2569.vg.json │ │ ├── vega_2570.vg.json │ │ ├── vega_2571.vg.json │ │ ├── vega_2572.vg.json │ │ ├── vega_2573.vg.json │ │ ├── vega_2574.vg.json │ │ ├── vega_2575.vg.json │ │ ├── vega_2576.vg.json │ │ ├── vega_2577.vg.json │ │ ├── vega_2578.vg.json │ │ ├── vega_2579.vg.json │ │ ├── vega_2580.vg.json │ │ ├── vega_2581.vg.json │ │ ├── vega_2582.vg.json │ │ ├── vega_2583.vg.json │ │ ├── vega_2584.vg.json │ │ ├── vega_2585.vg.json │ │ ├── vega_2586.vg.json │ │ ├── vega_2587.vg.json │ │ ├── vega_2588.vg.json │ │ ├── vega_2589.vg.json │ │ ├── vega_2590.vg.json │ │ ├── vega_2591.vg.json │ │ ├── vega_2592.vg.json │ │ ├── vega_2593.vg.json │ │ ├── vega_2594.vg.json │ │ ├── vega_2595.vg.json │ │ ├── vega_2596.vg.json │ │ ├── vega_2597.vg.json │ │ ├── vega_2598.vg.json │ │ ├── vega_2599.vg.json │ │ ├── vega_2600.vg.json │ │ ├── vega_2601.vg.json │ │ ├── vega_2602.vg.json │ │ ├── vega_2603.vg.json │ │ ├── vega_2604.vg.json │ │ ├── vega_2605.vg.json │ │ ├── vega_2606.vg.json │ │ ├── vega_2607.vg.json │ │ ├── vega_2608.vg.json │ │ ├── vega_2609.vg.json │ │ ├── vega_2610.vg.json │ │ ├── vega_2611.vg.json │ │ ├── vega_2612.vg.json │ │ ├── vega_2613.vg.json │ │ ├── vega_2614.vg.json │ │ ├── vega_2615.vg.json │ │ ├── vega_2616.vg.json │ │ ├── vega_2617.vg.json │ │ ├── vega_2618.vg.json │ │ ├── vega_2619.vg.json │ │ ├── vega_2620.vg.json │ │ ├── vega_2621.vg.json │ │ ├── vega_2622.vg.json │ │ ├── vega_2623.vg.json │ │ ├── vega_2624.vg.json │ │ ├── vega_2625.vg.json │ │ ├── vega_2626.vg.json │ │ ├── vega_2627.vg.json │ │ ├── vega_2628.vg.json │ │ ├── vega_2629.vg.json │ │ ├── vega_2630.vg.json │ │ ├── vega_2631.vg.json │ │ ├── vega_2632.vg.json │ │ ├── vega_2633.vg.json │ │ ├── vega_2634.vg.json │ │ ├── vega_2635.vg.json │ │ ├── vega_2636.vg.json │ │ ├── vega_2637.vg.json │ │ ├── vega_2638.vg.json │ │ ├── vega_2639.vg.json │ │ ├── vega_2640.vg.json │ │ ├── vega_2641.vg.json │ │ ├── vega_2642.vg.json │ │ ├── vega_2643.vg.json │ │ ├── vega_2644.vg.json │ │ ├── vega_2645.vg.json │ │ ├── vega_2646.vg.json │ │ ├── vega_2647.vg.json │ │ ├── vega_2648.vg.json │ │ ├── vega_2649.vg.json │ │ ├── vega_2650.vg.json │ │ ├── vega_2651.vg.json │ │ ├── vega_2652.vg.json │ │ ├── vega_2653.vg.json │ │ ├── vega_2654.vg.json │ │ ├── vega_2655.vg.json │ │ ├── vega_2656.vg.json │ │ ├── vega_2657.vg.json │ │ ├── vega_2658.vg.json │ │ ├── vega_2659.vg.json │ │ ├── vega_2660.vg.json │ │ ├── vega_2661.vg.json │ │ ├── vega_2662.vg.json │ │ ├── vega_2663.vg.json │ │ ├── vega_2664.vg.json │ │ ├── vega_2665.vg.json │ │ ├── vega_2666.vg.json │ │ ├── vega_2667.vg.json │ │ ├── vega_2668.vg.json │ │ ├── vega_2669.vg.json │ │ ├── vega_2670.vg.json │ │ ├── vega_2671.vg.json │ │ ├── vega_2672.vg.json │ │ ├── vega_2673.vg.json │ │ ├── vega_2674.vg.json │ │ ├── vega_2675.vg.json │ │ ├── vega_2676.vg.json │ │ ├── vega_2677.vg.json │ │ ├── vega_2678.vg.json │ │ ├── vega_2679.vg.json │ │ ├── vega_2680.vg.json │ │ ├── vega_2681.vg.json │ │ ├── vega_2682.vg.json │ │ ├── vega_2683.vg.json │ │ ├── vega_2684.vg.json │ │ ├── vega_2685.vg.json │ │ ├── vega_2686.vg.json │ │ ├── vega_2687.vg.json │ │ ├── vega_2688.vg.json │ │ ├── vega_2689.vg.json │ │ ├── vega_2690.vg.json │ │ ├── vega_2691.vg.json │ │ ├── vega_2692.vg.json │ │ ├── vega_2693.vg.json │ │ ├── vega_2694.vg.json │ │ ├── vega_2695.vg.json │ │ ├── vega_2696.vg.json │ │ ├── vega_2697.vg.json │ │ ├── vega_2698.vg.json │ │ ├── vega_2699.vg.json │ │ ├── vega_2700.vg.json │ │ ├── vega_2701.vg.json │ │ ├── vega_2702.vg.json │ │ ├── vega_2703.vg.json │ │ ├── vega_2704.vg.json │ │ ├── vega_2705.vg.json │ │ ├── vega_2706.vg.json │ │ ├── vega_2707.vg.json │ │ ├── vega_2708.vg.json │ │ ├── vega_2709.vg.json │ │ ├── vega_2710.vg.json │ │ ├── vega_2711.vg.json │ │ ├── vega_2712.vg.json │ │ ├── vega_2713.vg.json │ │ ├── vega_2714.vg.json │ │ ├── vega_2715.vg.json │ │ ├── vega_2716.vg.json │ │ ├── vega_2717.vg.json │ │ ├── vega_2718.vg.json │ │ ├── vega_2719.vg.json │ │ ├── vega_2720.vg.json │ │ ├── vega_2721.vg.json │ │ ├── vega_2722.vg.json │ │ ├── vega_2723.vg.json │ │ ├── vega_2724.vg.json │ │ ├── vega_2725.vg.json │ │ ├── vega_2726.vg.json │ │ ├── vega_2727.vg.json │ │ ├── vega_2728.vg.json │ │ ├── vega_2729.vg.json │ │ ├── vega_2730.vg.json │ │ ├── vega_2731.vg.json │ │ ├── vega_2732.vg.json │ │ ├── vega_2733.vg.json │ │ ├── vega_2734.vg.json │ │ ├── vega_2735.vg.json │ │ ├── vega_2736.vg.json │ │ ├── vega_2737.vg.json │ │ ├── vega_2738.vg.json │ │ ├── vega_2739.vg.json │ │ ├── vega_2740.vg.json │ │ ├── vega_2741.vg.json │ │ ├── vega_2742.vg.json │ │ ├── vega_2743.vg.json │ │ ├── vega_2744.vg.json │ │ ├── vega_2745.vg.json │ │ ├── vega_2746.vg.json │ │ ├── vega_2747.vg.json │ │ ├── vega_2748.vg.json │ │ ├── vega_2749.vg.json │ │ ├── vega_2750.vg.json │ │ ├── vega_2751.vg.json │ │ ├── vega_2752.vg.json │ │ ├── vega_2753.vg.json │ │ ├── vega_2754.vg.json │ │ ├── vega_2755.vg.json │ │ ├── vega_2756.vg.json │ │ ├── vega_2757.vg.json │ │ ├── vega_2758.vg.json │ │ ├── vega_2759.vg.json │ │ ├── vega_2760.vg.json │ │ ├── vega_2761.vg.json │ │ ├── vega_2762.vg.json │ │ ├── vega_2763.vg.json │ │ ├── vega_2764.vg.json │ │ ├── vega_2765.vg.json │ │ ├── vega_2766.vg.json │ │ ├── vega_2767.vg.json │ │ ├── vega_2768.vg.json │ │ ├── vega_2769.vg.json │ │ ├── vega_2770.vg.json │ │ ├── vega_2771.vg.json │ │ ├── vega_2772.vg.json │ │ ├── vega_2773.vg.json │ │ ├── vega_2774.vg.json │ │ ├── vega_2775.vg.json │ │ ├── vega_2776.vg.json │ │ ├── vega_2777.vg.json │ │ ├── vega_2778.vg.json │ │ ├── vega_2779.vg.json │ │ ├── vega_2780.vg.json │ │ ├── vega_2781.vg.json │ │ ├── vega_2782.vg.json │ │ ├── vega_2783.vg.json │ │ ├── vega_2784.vg.json │ │ ├── vega_2785.vg.json │ │ ├── vega_2786.vg.json │ │ ├── vega_2787.vg.json │ │ ├── vega_2788.vg.json │ │ ├── vega_2789.vg.json │ │ ├── vega_2790.vg.json │ │ ├── vega_2791.vg.json │ │ ├── vega_2792.vg.json │ │ ├── vega_2793.vg.json │ │ ├── vega_2794.vg.json │ │ ├── vega_2795.vg.json │ │ ├── vega_2796.vg.json │ │ ├── vega_2797.vg.json │ │ ├── vega_2798.vg.json │ │ ├── vega_2799.vg.json │ │ ├── vega_2800.vg.json │ │ ├── vega_2801.vg.json │ │ ├── vega_2802.vg.json │ │ ├── vega_2803.vg.json │ │ ├── vega_2804.vg.json │ │ ├── vega_2805.vg.json │ │ ├── vega_2806.vg.json │ │ ├── vega_2807.vg.json │ │ ├── vega_2808.vg.json │ │ ├── vega_2809.vg.json │ │ ├── vega_2810.vg.json │ │ ├── vega_2811.vg.json │ │ ├── vega_2812.vg.json │ │ ├── vega_2813.vg.json │ │ ├── vega_2814.vg.json │ │ ├── vega_2815.vg.json │ │ ├── vega_2816.vg.json │ │ ├── vega_2817.vg.json │ │ ├── vega_2818.vg.json │ │ ├── vega_2819.vg.json │ │ ├── vega_2820.vg.json │ │ ├── vega_2821.vg.json │ │ ├── vega_2822.vg.json │ │ ├── vega_2823.vg.json │ │ ├── vega_2824.vg.json │ │ ├── vega_2825.vg.json │ │ ├── vega_2826.vg.json │ │ ├── vega_2827.vg.json │ │ ├── vega_2828.vg.json │ │ ├── vega_2829.vg.json │ │ ├── vega_2830.vg.json │ │ ├── vega_2831.vg.json │ │ ├── vega_2832.vg.json │ │ ├── vega_2833.vg.json │ │ ├── vega_2834.vg.json │ │ ├── vega_2835.vg.json │ │ ├── vega_2836.vg.json │ │ ├── vega_2837.vg.json │ │ ├── vega_2838.vg.json │ │ ├── vega_2839.vg.json │ │ ├── vega_2840.vg.json │ │ ├── vega_2841.vg.json │ │ ├── vega_2842.vg.json │ │ ├── vega_2843.vg.json │ │ ├── vega_2844.vg.json │ │ ├── vega_2845.vg.json │ │ ├── vega_2846.vg.json │ │ ├── vega_2847.vg.json │ │ ├── vega_2848.vg.json │ │ ├── vega_2849.vg.json │ │ ├── vega_2850.vg.json │ │ ├── vega_2851.vg.json │ │ ├── vega_2852.vg.json │ │ ├── vega_2853.vg.json │ │ ├── vega_2854.vg.json │ │ ├── vega_2855.vg.json │ │ ├── vega_2856.vg.json │ │ ├── vega_2857.vg.json │ │ ├── vega_2858.vg.json │ │ ├── vega_2859.vg.json │ │ ├── vega_2860.vg.json │ │ ├── vega_2861.vg.json │ │ ├── vega_2862.vg.json │ │ ├── vega_2863.vg.json │ │ ├── vega_2864.vg.json │ │ ├── vega_2865.vg.json │ │ ├── vega_2866.vg.json │ │ ├── vega_2867.vg.json │ │ ├── vega_2868.vg.json │ │ ├── vega_2869.vg.json │ │ ├── vega_2870.vg.json │ │ ├── vega_2871.vg.json │ │ ├── vega_2872.vg.json │ │ ├── vega_2873.vg.json │ │ ├── vega_2874.vg.json │ │ ├── vega_2875.vg.json │ │ ├── vega_2876.vg.json │ │ ├── vega_2877.vg.json │ │ ├── vega_2878.vg.json │ │ ├── vega_2879.vg.json │ │ ├── vega_2880.vg.json │ │ ├── vega_2881.vg.json │ │ ├── vega_2882.vg.json │ │ ├── vega_2883.vg.json │ │ ├── vega_2884.vg.json │ │ ├── vega_2885.vg.json │ │ ├── vega_2886.vg.json │ │ ├── vega_2887.vg.json │ │ ├── vega_2888.vg.json │ │ ├── vega_2889.vg.json │ │ ├── vega_2890.vg.json │ │ ├── vega_2891.vg.json │ │ ├── vega_2892.vg.json │ │ ├── vega_2893.vg.json │ │ ├── vega_2894.vg.json │ │ ├── vega_2895.vg.json │ │ ├── vega_2896.vg.json │ │ ├── vega_2897.vg.json │ │ ├── vega_2898.vg.json │ │ ├── vega_2899.vg.json │ │ ├── vega_2900.vg.json │ │ ├── vega_2901.vg.json │ │ ├── vega_2902.vg.json │ │ ├── vega_2903.vg.json │ │ ├── vega_2904.vg.json │ │ ├── vega_2905.vg.json │ │ ├── vega_2906.vg.json │ │ ├── vega_2907.vg.json │ │ ├── vega_2908.vg.json │ │ ├── vega_2909.vg.json │ │ ├── vega_2910.vg.json │ │ ├── vega_2911.vg.json │ │ ├── vega_2912.vg.json │ │ ├── vega_2913.vg.json │ │ ├── vega_2914.vg.json │ │ ├── vega_2915.vg.json │ │ ├── vega_2916.vg.json │ │ ├── vega_2917.vg.json │ │ ├── vega_2918.vg.json │ │ ├── vega_2919.vg.json │ │ ├── vega_2920.vg.json │ │ ├── vega_2921.vg.json │ │ ├── vega_2922.vg.json │ │ ├── vega_2923.vg.json │ │ ├── vega_2924.vg.json │ │ ├── vega_2925.vg.json │ │ ├── vega_2926.vg.json │ │ ├── vega_2927.vg.json │ │ ├── vega_2928.vg.json │ │ ├── vega_2929.vg.json │ │ ├── vega_2930.vg.json │ │ ├── vega_2931.vg.json │ │ ├── vega_2932.vg.json │ │ ├── vega_2933.vg.json │ │ ├── vega_2934.vg.json │ │ ├── vega_2935.vg.json │ │ ├── vega_2936.vg.json │ │ ├── vega_2937.vg.json │ │ ├── vega_2938.vg.json │ │ ├── vega_2939.vg.json │ │ ├── vega_2940.vg.json │ │ ├── vega_2941.vg.json │ │ ├── vega_2942.vg.json │ │ ├── vega_2943.vg.json │ │ ├── vega_2944.vg.json │ │ ├── vega_2945.vg.json │ │ ├── vega_2946.vg.json │ │ ├── vega_2947.vg.json │ │ ├── vega_2948.vg.json │ │ ├── vega_2949.vg.json │ │ ├── vega_2950.vg.json │ │ ├── vega_2951.vg.json │ │ ├── vega_2952.vg.json │ │ ├── vega_2953.vg.json │ │ ├── vega_2954.vg.json │ │ ├── vega_2955.vg.json │ │ ├── vega_2956.vg.json │ │ ├── vega_2957.vg.json │ │ ├── vega_2958.vg.json │ │ ├── vega_2959.vg.json │ │ ├── vega_2960.vg.json │ │ ├── vega_2961.vg.json │ │ ├── vega_2962.vg.json │ │ ├── vega_2963.vg.json │ │ ├── vega_2964.vg.json │ │ ├── vega_2965.vg.json │ │ ├── vega_2966.vg.json │ │ ├── vega_2967.vg.json │ │ ├── vega_2968.vg.json │ │ ├── vega_2969.vg.json │ │ ├── vega_2970.vg.json │ │ ├── vega_2971.vg.json │ │ ├── vega_2972.vg.json │ │ ├── vega_2973.vg.json │ │ ├── vega_2974.vg.json │ │ ├── vega_2975.vg.json │ │ ├── vega_2976.vg.json │ │ ├── vega_2977.vg.json │ │ ├── vega_2978.vg.json │ │ ├── vega_2979.vg.json │ │ ├── vega_2980.vg.json │ │ ├── vega_2981.vg.json │ │ ├── vega_2982.vg.json │ │ ├── vega_2983.vg.json │ │ ├── vega_2984.vg.json │ │ ├── vega_2985.vg.json │ │ ├── vega_2986.vg.json │ │ ├── vega_2987.vg.json │ │ ├── vega_2988.vg.json │ │ ├── vega_2989.vg.json │ │ ├── vega_2990.vg.json │ │ ├── vega_2991.vg.json │ │ ├── vega_2992.vg.json │ │ ├── vega_2993.vg.json │ │ ├── vega_2994.vg.json │ │ ├── vega_2995.vg.json │ │ ├── vega_2996.vg.json │ │ ├── vega_2997.vg.json │ │ ├── vega_2998.vg.json │ │ ├── vega_2999.vg.json │ │ ├── vega_3000.vg.json │ │ ├── vega_3001.vg.json │ │ ├── vega_3002.vg.json │ │ ├── vega_3003.vg.json │ │ ├── vega_3004.vg.json │ │ ├── vega_3005.vg.json │ │ ├── vega_3006.vg.json │ │ ├── vega_3007.vg.json │ │ ├── vega_3008.vg.json │ │ ├── vega_3009.vg.json │ │ ├── vega_3010.vg.json │ │ ├── vega_3011.vg.json │ │ ├── vega_3012.vg.json │ │ ├── vega_3013.vg.json │ │ ├── vega_3014.vg.json │ │ ├── vega_3015.vg.json │ │ ├── vega_3016.vg.json │ │ ├── vega_3017.vg.json │ │ ├── vega_3018.vg.json │ │ ├── vega_3019.vg.json │ │ ├── vega_3020.vg.json │ │ ├── vega_3021.vg.json │ │ ├── vega_3022.vg.json │ │ ├── vega_3023.vg.json │ │ ├── vega_3024.vg.json │ │ ├── vega_3025.vg.json │ │ ├── vega_3026.vg.json │ │ ├── vega_3027.vg.json │ │ ├── vega_3028.vg.json │ │ ├── vega_3029.vg.json │ │ ├── vega_3030.vg.json │ │ ├── vega_3031.vg.json │ │ ├── vega_3032.vg.json │ │ ├── vega_3033.vg.json │ │ ├── vega_3034.vg.json │ │ ├── vega_3035.vg.json │ │ ├── vega_3036.vg.json │ │ ├── vega_3037.vg.json │ │ ├── vega_3038.vg.json │ │ ├── vega_3039.vg.json │ │ ├── vega_3040.vg.json │ │ ├── vega_3041.vg.json │ │ ├── vega_3042.vg.json │ │ ├── vega_3043.vg.json │ │ ├── vega_3044.vg.json │ │ ├── vega_3045.vg.json │ │ ├── vega_3046.vg.json │ │ ├── vega_3047.vg.json │ │ ├── vega_3048.vg.json │ │ ├── vega_3049.vg.json │ │ ├── vega_3050.vg.json │ │ ├── vega_3051.vg.json │ │ ├── vega_3052.vg.json │ │ ├── vega_3053.vg.json │ │ ├── vega_3054.vg.json │ │ ├── vega_3055.vg.json │ │ ├── vega_3056.vg.json │ │ ├── vega_3057.vg.json │ │ ├── vega_3058.vg.json │ │ ├── vega_3059.vg.json │ │ ├── vega_3060.vg.json │ │ ├── vega_3061.vg.json │ │ ├── vega_3062.vg.json │ │ ├── vega_3063.vg.json │ │ ├── vega_3064.vg.json │ │ ├── vega_3065.vg.json │ │ ├── vega_3066.vg.json │ │ ├── vega_3067.vg.json │ │ ├── vega_3068.vg.json │ │ ├── vega_3069.vg.json │ │ ├── vega_3070.vg.json │ │ ├── vega_3071.vg.json │ │ ├── vega_3072.vg.json │ │ ├── vega_3073.vg.json │ │ ├── vega_3074.vg.json │ │ ├── vega_3075.vg.json │ │ ├── vega_3076.vg.json │ │ ├── vega_3077.vg.json │ │ ├── vega_3078.vg.json │ │ ├── vega_3079.vg.json │ │ ├── vega_3080.vg.json │ │ ├── vega_3081.vg.json │ │ ├── vega_3082.vg.json │ │ ├── vega_3083.vg.json │ │ ├── vega_3084.vg.json │ │ ├── vega_3085.vg.json │ │ ├── vega_3086.vg.json │ │ ├── vega_3087.vg.json │ │ ├── vega_3088.vg.json │ │ ├── vega_3089.vg.json │ │ ├── vega_3090.vg.json │ │ ├── vega_3091.vg.json │ │ ├── vega_3092.vg.json │ │ ├── vega_3093.vg.json │ │ ├── vega_3094.vg.json │ │ ├── vega_3095.vg.json │ │ ├── vega_3096.vg.json │ │ ├── vega_3097.vg.json │ │ ├── vega_3098.vg.json │ │ ├── vega_3099.vg.json │ │ ├── vega_3100.vg.json │ │ ├── vega_3101.vg.json │ │ ├── vega_3102.vg.json │ │ ├── vega_3103.vg.json │ │ ├── vega_3104.vg.json │ │ ├── vega_3105.vg.json │ │ ├── vega_3106.vg.json │ │ ├── vega_3107.vg.json │ │ ├── vega_3108.vg.json │ │ ├── vega_3109.vg.json │ │ ├── vega_3110.vg.json │ │ ├── vega_3111.vg.json │ │ ├── vega_3112.vg.json │ │ ├── vega_3113.vg.json │ │ ├── vega_3114.vg.json │ │ ├── vega_3115.vg.json │ │ ├── vega_3116.vg.json │ │ ├── vega_3117.vg.json │ │ ├── vega_3118.vg.json │ │ ├── vega_3119.vg.json │ │ ├── vega_3120.vg.json │ │ ├── vega_3121.vg.json │ │ ├── vega_3122.vg.json │ │ ├── vega_3123.vg.json │ │ ├── vega_3124.vg.json │ │ ├── vega_3125.vg.json │ │ ├── vega_3126.vg.json │ │ ├── vega_3127.vg.json │ │ ├── vega_3128.vg.json │ │ ├── vega_3129.vg.json │ │ ├── vega_3130.vg.json │ │ ├── vega_3131.vg.json │ │ ├── vega_3132.vg.json │ │ ├── vega_3133.vg.json │ │ ├── vega_3134.vg.json │ │ ├── vega_3135.vg.json │ │ ├── vega_3136.vg.json │ │ ├── vega_3137.vg.json │ │ ├── vega_3138.vg.json │ │ ├── vega_3139.vg.json │ │ ├── vega_3140.vg.json │ │ ├── vega_3141.vg.json │ │ ├── vega_3142.vg.json │ │ ├── vega_3143.vg.json │ │ ├── vega_3144.vg.json │ │ ├── vega_3145.vg.json │ │ ├── vega_3146.vg.json │ │ ├── vega_3147.vg.json │ │ ├── vega_3148.vg.json │ │ ├── vega_3149.vg.json │ │ ├── vega_3150.vg.json │ │ ├── vega_3151.vg.json │ │ ├── vega_3152.vg.json │ │ ├── vega_3153.vg.json │ │ ├── vega_3154.vg.json │ │ ├── vega_3155.vg.json │ │ ├── vega_3156.vg.json │ │ ├── vega_3157.vg.json │ │ ├── vega_3158.vg.json │ │ ├── vega_3159.vg.json │ │ ├── vega_3160.vg.json │ │ ├── vega_3161.vg.json │ │ ├── vega_3162.vg.json │ │ ├── vega_3163.vg.json │ │ ├── vega_3164.vg.json │ │ ├── vega_3165.vg.json │ │ ├── vega_3166.vg.json │ │ ├── vega_3167.vg.json │ │ ├── vega_3168.vg.json │ │ ├── vega_3169.vg.json │ │ ├── vega_3170.vg.json │ │ ├── vega_3171.vg.json │ │ ├── vega_3172.vg.json │ │ ├── vega_3173.vg.json │ │ ├── vega_3174.vg.json │ │ ├── vega_3175.vg.json │ │ ├── vega_3176.vg.json │ │ ├── vega_3177.vg.json │ │ ├── vega_3178.vg.json │ │ ├── vega_3179.vg.json │ │ ├── vega_3180.vg.json │ │ ├── vega_3181.vg.json │ │ ├── vega_3182.vg.json │ │ ├── vega_3183.vg.json │ │ ├── vega_3184.vg.json │ │ ├── vega_3185.vg.json │ │ ├── vega_3186.vg.json │ │ ├── vega_3187.vg.json │ │ ├── vega_3188.vg.json │ │ ├── vega_3190.vg.json │ │ ├── vega_3191.vg.json │ │ ├── vega_3192.vg.json │ │ ├── vega_3193.vg.json │ │ ├── vega_3194.vg.json │ │ ├── vega_3195.vg.json │ │ ├── vega_3196.vg.json │ │ ├── vega_3197.vg.json │ │ ├── vega_3198.vg.json │ │ ├── vega_3199.vg.json │ │ ├── vega_3200.vg.json │ │ ├── vega_3201.vg.json │ │ ├── vega_3202.vg.json │ │ ├── vega_3203.vg.json │ │ ├── vega_3204.vg.json │ │ ├── vega_3205.vg.json │ │ ├── vega_3206.vg.json │ │ ├── vega_3207.vg.json │ │ ├── vega_3208.vg.json │ │ ├── vega_3209.vg.json │ │ ├── vega_3210.vg.json │ │ ├── vega_3211.vg.json │ │ ├── vega_3212.vg.json │ │ ├── vega_3213.vg.json │ │ ├── vega_3214.vg.json │ │ ├── vega_3215.vg.json │ │ ├── vega_3216.vg.json │ │ ├── vega_3217.vg.json │ │ ├── vega_3218.vg.json │ │ ├── vega_3219.vg.json │ │ ├── vega_3220.vg.json │ │ ├── vega_3221.vg.json │ │ ├── vega_3222.vg.json │ │ ├── vega_3223.vg.json │ │ ├── vega_3224.vg.json │ │ ├── vega_3225.vg.json │ │ ├── vega_3226.vg.json │ │ ├── vega_3227.vg.json │ │ ├── vega_3228.vg.json │ │ ├── vega_3229.vg.json │ │ ├── vega_3230.vg.json │ │ ├── vega_3231.vg.json │ │ ├── vega_3232.vg.json │ │ ├── vega_3233.vg.json │ │ ├── vega_3234.vg.json │ │ ├── vega_3235.vg.json │ │ ├── vega_3236.vg.json │ │ ├── vega_3237.vg.json │ │ ├── vega_3238.vg.json │ │ ├── vega_3239.vg.json │ │ ├── vega_3240.vg.json │ │ ├── vega_3241.vg.json │ │ ├── vega_3242.vg.json │ │ ├── vega_3243.vg.json │ │ ├── vega_3244.vg.json │ │ ├── vega_3245.vg.json │ │ ├── vega_3246.vg.json │ │ ├── vega_3247.vg.json │ │ ├── vega_3248.vg.json │ │ ├── vega_3249.vg.json │ │ ├── vega_3250.vg.json │ │ ├── vega_3251.vg.json │ │ ├── vega_3252.vg.json │ │ ├── vega_3253.vg.json │ │ ├── vega_3254.vg.json │ │ ├── vega_3255.vg.json │ │ ├── vega_3256.vg.json │ │ ├── vega_3257.vg.json │ │ ├── vega_3258.vg.json │ │ ├── vega_3259.vg.json │ │ ├── vega_3260.vg.json │ │ ├── vega_3261.vg.json │ │ ├── vega_3262.vg.json │ │ ├── vega_3263.vg.json │ │ ├── vega_3264.vg.json │ │ ├── vega_3265.vg.json │ │ ├── vega_3266.vg.json │ │ ├── vega_3267.vg.json │ │ ├── vega_3268.vg.json │ │ ├── vega_3269.vg.json │ │ ├── vega_3270.vg.json │ │ ├── vega_3271.vg.json │ │ ├── vega_3272.vg.json │ │ ├── vega_3273.vg.json │ │ ├── vega_3274.vg.json │ │ ├── vega_3275.vg.json │ │ ├── vega_3276.vg.json │ │ ├── vega_3277.vg.json │ │ ├── vega_3278.vg.json │ │ ├── vega_3279.vg.json │ │ ├── vega_3280.vg.json │ │ ├── vega_3281.vg.json │ │ ├── vega_3282.vg.json │ │ ├── vega_3283.vg.json │ │ ├── vega_3284.vg.json │ │ ├── vega_3285.vg.json │ │ ├── vega_3286.vg.json │ │ ├── vega_3287.vg.json │ │ ├── vega_3288.vg.json │ │ ├── vega_3289.vg.json │ │ ├── vega_3290.vg.json │ │ ├── vega_3291.vg.json │ │ ├── vega_3292.vg.json │ │ ├── vega_3293.vg.json │ │ ├── vega_3294.vg.json │ │ ├── vega_3295.vg.json │ │ ├── vega_3296.vg.json │ │ ├── vega_3297.vg.json │ │ ├── vega_3298.vg.json │ │ ├── vega_3299.vg.json │ │ ├── vega_3300.vg.json │ │ ├── vega_3301.vg.json │ │ ├── vega_3302.vg.json │ │ ├── vega_3303.vg.json │ │ ├── vega_3304.vg.json │ │ ├── vega_3305.vg.json │ │ ├── vega_3306.vg.json │ │ ├── vega_3307.vg.json │ │ ├── vega_3308.vg.json │ │ ├── vega_3309.vg.json │ │ ├── vega_3310.vg.json │ │ ├── vega_3311.vg.json │ │ ├── vega_3312.vg.json │ │ ├── vega_3313.vg.json │ │ ├── vega_3314.vg.json │ │ ├── vega_3315.vg.json │ │ ├── vega_3316.vg.json │ │ ├── vega_3317.vg.json │ │ ├── vega_3318.vg.json │ │ ├── vega_3319.vg.json │ │ ├── vega_3320.vg.json │ │ ├── vega_3321.vg.json │ │ ├── vega_3322.vg.json │ │ ├── vega_3323.vg.json │ │ ├── vega_3324.vg.json │ │ ├── vega_3325.vg.json │ │ ├── vega_3326.vg.json │ │ ├── vega_3327.vg.json │ │ ├── vega_3328.vg.json │ │ ├── vega_3329.vg.json │ │ ├── vega_3330.vg.json │ │ ├── vega_3331.vg.json │ │ ├── vega_3332.vg.json │ │ ├── vega_3333.vg.json │ │ ├── vega_3334.vg.json │ │ ├── vega_3335.vg.json │ │ ├── vega_3336.vg.json │ │ ├── vega_3337.vg.json │ │ ├── vega_3338.vg.json │ │ ├── vega_3339.vg.json │ │ ├── vega_3340.vg.json │ │ ├── vega_3341.vg.json │ │ ├── vega_3342.vg.json │ │ ├── vega_3343.vg.json │ │ ├── vega_3344.vg.json │ │ ├── vega_3345.vg.json │ │ ├── vega_3346.vg.json │ │ ├── vega_3347.vg.json │ │ ├── vega_3348.vg.json │ │ ├── vega_3349.vg.json │ │ ├── vega_3350.vg.json │ │ ├── vega_3351.vg.json │ │ ├── vega_3352.vg.json │ │ ├── vega_3353.vg.json │ │ ├── vega_3354.vg.json │ │ ├── vega_3355.vg.json │ │ ├── vega_3356.vg.json │ │ ├── vega_3357.vg.json │ │ ├── vega_3358.vg.json │ │ ├── vega_3359.vg.json │ │ ├── vega_3360.vg.json │ │ ├── vega_3361.vg.json │ │ ├── vega_3362.vg.json │ │ ├── vega_3363.vg.json │ │ ├── vega_3364.vg.json │ │ ├── vega_3365.vg.json │ │ ├── vega_3366.vg.json │ │ ├── vega_3367.vg.json │ │ ├── vega_3368.vg.json │ │ ├── vega_3369.vg.json │ │ ├── vega_3370.vg.json │ │ ├── vega_3371.vg.json │ │ ├── vega_3372.vg.json │ │ ├── vega_3373.vg.json │ │ ├── vega_3374.vg.json │ │ ├── vega_3375.vg.json │ │ ├── vega_3376.vg.json │ │ ├── vega_3377.vg.json │ │ ├── vega_3378.vg.json │ │ ├── vega_3379.vg.json │ │ ├── vega_3380.vg.json │ │ ├── vega_3381.vg.json │ │ ├── vega_3382.vg.json │ │ ├── vega_3383.vg.json │ │ ├── vega_3384.vg.json │ │ ├── vega_3385.vg.json │ │ ├── vega_3386.vg.json │ │ ├── vega_3387.vg.json │ │ ├── vega_3388.vg.json │ │ ├── vega_3389.vg.json │ │ ├── vega_3390.vg.json │ │ ├── vega_3391.vg.json │ │ ├── vega_3392.vg.json │ │ ├── vega_3393.vg.json │ │ ├── vega_3394.vg.json │ │ ├── vega_3395.vg.json │ │ ├── vega_3396.vg.json │ │ ├── vega_3397.vg.json │ │ ├── vega_3398.vg.json │ │ ├── vega_3399.vg.json │ │ ├── vega_3400.vg.json │ │ ├── vega_3401.vg.json │ │ ├── vega_3402.vg.json │ │ ├── vega_3403.vg.json │ │ ├── vega_3404.vg.json │ │ ├── vega_3405.vg.json │ │ ├── vega_3406.vg.json │ │ ├── vega_3407.vg.json │ │ ├── vega_3408.vg.json │ │ ├── vega_3409.vg.json │ │ ├── vega_3410.vg.json │ │ ├── vega_3411.vg.json │ │ ├── vega_3412.vg.json │ │ ├── vega_3413.vg.json │ │ ├── vega_3414.vg.json │ │ ├── vega_3415.vg.json │ │ ├── vega_3416.vg.json │ │ ├── vega_3417.vg.json │ │ ├── vega_3418.vg.json │ │ ├── vega_3419.vg.json │ │ ├── vega_3420.vg.json │ │ ├── vega_3421.vg.json │ │ ├── vega_3422.vg.json │ │ ├── vega_3423.vg.json │ │ ├── vega_3424.vg.json │ │ ├── vega_3425.vg.json │ │ ├── vega_3426.vg.json │ │ ├── vega_3427.vg.json │ │ ├── vega_3428.vg.json │ │ ├── vega_3429.vg.json │ │ ├── vega_3430.vg.json │ │ ├── vega_3431.vg.json │ │ ├── vega_3432.vg.json │ │ ├── vega_3433.vg.json │ │ ├── vega_3434.vg.json │ │ ├── vega_3435.vg.json │ │ ├── vega_3436.vg.json │ │ ├── vega_3437.vg.json │ │ ├── vega_3438.vg.json │ │ ├── vega_3439.vg.json │ │ ├── vega_3440.vg.json │ │ ├── vega_3441.vg.json │ │ ├── vega_3442.vg.json │ │ ├── vega_3443.vg.json │ │ ├── vega_3444.vg.json │ │ ├── vega_3445.vg.json │ │ ├── vega_3446.vg.json │ │ ├── vega_3447.vg.json │ │ ├── vega_3448.vg.json │ │ ├── vega_3449.vg.json │ │ ├── vega_3450.vg.json │ │ ├── vega_3451.vg.json │ │ ├── vega_3452.vg.json │ │ ├── vega_3453.vg.json │ │ ├── vega_3454.vg.json │ │ ├── vega_3455.vg.json │ │ ├── vega_3456.vg.json │ │ ├── vega_3457.vg.json │ │ ├── vega_3458.vg.json │ │ ├── vega_3459.vg.json │ │ ├── vega_3460.vg.json │ │ ├── vega_3461.vg.json │ │ ├── vega_3462.vg.json │ │ ├── vega_3463.vg.json │ │ ├── vega_3464.vg.json │ │ ├── vega_3465.vg.json │ │ ├── vega_3466.vg.json │ │ ├── vega_3467.vg.json │ │ ├── vega_3468.vg.json │ │ ├── vega_3469.vg.json │ │ ├── vega_3470.vg.json │ │ ├── vega_3471.vg.json │ │ ├── vega_3472.vg.json │ │ ├── vega_3473.vg.json │ │ ├── vega_3474.vg.json │ │ ├── vega_3475.vg.json │ │ ├── vega_3476.vg.json │ │ ├── vega_3477.vg.json │ │ ├── vega_3478.vg.json │ │ ├── vega_3479.vg.json │ │ ├── vega_3480.vg.json │ │ ├── vega_3481.vg.json │ │ ├── vega_3482.vg.json │ │ ├── vega_3483.vg.json │ │ ├── vega_3484.vg.json │ │ ├── vega_3485.vg.json │ │ ├── vega_3486.vg.json │ │ ├── vega_3487.vg.json │ │ ├── vega_3488.vg.json │ │ ├── vega_3489.vg.json │ │ ├── vega_3490.vg.json │ │ ├── vega_3491.vg.json │ │ ├── vega_3492.vg.json │ │ ├── vega_3493.vg.json │ │ ├── vega_3494.vg.json │ │ ├── vega_3495.vg.json │ │ ├── vega_3496.vg.json │ │ ├── vega_3497.vg.json │ │ ├── vega_3498.vg.json │ │ ├── vega_3499.vg.json │ │ ├── vega_3500.vg.json │ │ ├── vega_3501.vg.json │ │ ├── vega_3502.vg.json │ │ ├── vega_3503.vg.json │ │ ├── vega_3504.vg.json │ │ ├── vega_3505.vg.json │ │ ├── vega_3506.vg.json │ │ ├── vega_3507.vg.json │ │ ├── vega_3508.vg.json │ │ ├── vega_3509.vg.json │ │ ├── vega_3510.vg.json │ │ ├── vega_3511.vg.json │ │ ├── vega_3512.vg.json │ │ ├── vega_3513.vg.json │ │ ├── vega_3514.vg.json │ │ ├── vega_3515.vg.json │ │ ├── vega_3516.vg.json │ │ ├── vega_3517.vg.json │ │ ├── vega_3518.vg.json │ │ ├── vega_3519.vg.json │ │ ├── vega_3520.vg.json │ │ ├── vega_3521.vg.json │ │ ├── vega_3522.vg.json │ │ ├── vega_3523.vg.json │ │ ├── vega_3524.vg.json │ │ ├── vega_3525.vg.json │ │ ├── vega_3526.vg.json │ │ ├── vega_3527.vg.json │ │ ├── vega_3528.vg.json │ │ ├── vega_3529.vg.json │ │ ├── vega_3530.vg.json │ │ ├── vega_3531.vg.json │ │ ├── vega_3532.vg.json │ │ ├── vega_3533.vg.json │ │ ├── vega_3534.vg.json │ │ ├── vega_3535.vg.json │ │ ├── vega_3536.vg.json │ │ ├── vega_3537.vg.json │ │ ├── vega_3538.vg.json │ │ ├── vega_3539.vg.json │ │ ├── vega_3540.vg.json │ │ ├── vega_3541.vg.json │ │ ├── vega_3542.vg.json │ │ ├── vega_3543.vg.json │ │ ├── vega_3544.vg.json │ │ ├── vega_3545.vg.json │ │ ├── vega_3546.vg.json │ │ ├── vega_3547.vg.json │ │ ├── vega_3548.vg.json │ │ ├── vega_3549.vg.json │ │ ├── vega_3550.vg.json │ │ ├── vega_3551.vg.json │ │ ├── vega_3552.vg.json │ │ ├── vega_3553.vg.json │ │ ├── vega_3554.vg.json │ │ ├── vega_3555.vg.json │ │ ├── vega_3556.vg.json │ │ ├── vega_3557.vg.json │ │ ├── vega_3558.vg.json │ │ ├── vega_3559.vg.json │ │ ├── vega_3560.vg.json │ │ ├── vega_3561.vg.json │ │ ├── vega_3562.vg.json │ │ ├── vega_3563.vg.json │ │ ├── vega_3564.vg.json │ │ ├── vega_3565.vg.json │ │ ├── vega_3566.vg.json │ │ ├── vega_3567.vg.json │ │ ├── vega_3568.vg.json │ │ ├── vega_3569.vg.json │ │ ├── vega_3570.vg.json │ │ ├── vega_3571.vg.json │ │ ├── vega_3572.vg.json │ │ ├── vega_3573.vg.json │ │ ├── vega_3574.vg.json │ │ ├── vega_3575.vg.json │ │ ├── vega_3576.vg.json │ │ ├── vega_3577.vg.json │ │ ├── vega_3578.vg.json │ │ ├── vega_3579.vg.json │ │ ├── vega_3580.vg.json │ │ ├── vega_3581.vg.json │ │ ├── vega_3582.vg.json │ │ ├── vega_3583.vg.json │ │ ├── vega_3584.vg.json │ │ ├── vega_3585.vg.json │ │ ├── vega_3586.vg.json │ │ ├── vega_3587.vg.json │ │ ├── vega_3588.vg.json │ │ ├── vega_3589.vg.json │ │ ├── vega_3590.vg.json │ │ ├── vega_3591.vg.json │ │ ├── vega_3592.vg.json │ │ ├── vega_3593.vg.json │ │ ├── vega_3594.vg.json │ │ ├── vega_3595.vg.json │ │ ├── vega_3596.vg.json │ │ ├── vega_3597.vg.json │ │ ├── vega_3598.vg.json │ │ ├── vega_3599.vg.json │ │ ├── vega_3600.vg.json │ │ ├── vega_3601.vg.json │ │ ├── vega_3602.vg.json │ │ ├── vega_3603.vg.json │ │ ├── vega_3604.vg.json │ │ ├── vega_3605.vg.json │ │ ├── vega_3606.vg.json │ │ ├── vega_3607.vg.json │ │ ├── vega_3608.vg.json │ │ ├── vega_3609.vg.json │ │ ├── vega_3610.vg.json │ │ ├── vega_3611.vg.json │ │ ├── vega_3612.vg.json │ │ ├── vega_3613.vg.json │ │ ├── vega_3614.vg.json │ │ ├── vega_3615.vg.json │ │ ├── vega_3616.vg.json │ │ ├── vega_3617.vg.json │ │ ├── vega_3618.vg.json │ │ ├── vega_3619.vg.json │ │ ├── vega_3620.vg.json │ │ ├── vega_3621.vg.json │ │ ├── vega_3622.vg.json │ │ ├── vega_3623.vg.json │ │ ├── vega_3624.vg.json │ │ ├── vega_3625.vg.json │ │ ├── vega_3626.vg.json │ │ ├── vega_3627.vg.json │ │ ├── vega_3628.vg.json │ │ ├── vega_3629.vg.json │ │ ├── vega_3630.vg.json │ │ ├── vega_3631.vg.json │ │ ├── vega_3632.vg.json │ │ ├── vega_3633.vg.json │ │ ├── vega_3634.vg.json │ │ ├── vega_3635.vg.json │ │ ├── vega_3636.vg.json │ │ ├── vega_3637.vg.json │ │ ├── vega_3638.vg.json │ │ ├── vega_3639.vg.json │ │ ├── vega_3640.vg.json │ │ ├── vega_3641.vg.json │ │ ├── vega_3642.vg.json │ │ ├── vega_3643.vg.json │ │ ├── vega_3644.vg.json │ │ ├── vega_3645.vg.json │ │ ├── vega_3646.vg.json │ │ ├── vega_3647.vg.json │ │ ├── vega_3648.vg.json │ │ ├── vega_3649.vg.json │ │ ├── vega_3650.vg.json │ │ ├── vega_3651.vg.json │ │ ├── vega_3652.vg.json │ │ ├── vega_3653.vg.json │ │ ├── vega_3654.vg.json │ │ ├── vega_3655.vg.json │ │ ├── vega_3656.vg.json │ │ ├── vega_3657.vg.json │ │ ├── vega_3658.vg.json │ │ ├── vega_3659.vg.json │ │ ├── vega_3660.vg.json │ │ ├── vega_3661.vg.json │ │ ├── vega_3662.vg.json │ │ ├── vega_3663.vg.json │ │ ├── vega_3664.vg.json │ │ ├── vega_3665.vg.json │ │ ├── vega_3666.vg.json │ │ ├── vega_3667.vg.json │ │ ├── vega_3668.vg.json │ │ ├── vega_3669.vg.json │ │ ├── vega_3670.vg.json │ │ ├── vega_3671.vg.json │ │ ├── vega_3672.vg.json │ │ ├── vega_3673.vg.json │ │ ├── vega_3674.vg.json │ │ ├── vega_3675.vg.json │ │ ├── vega_3676.vg.json │ │ ├── vega_3677.vg.json │ │ ├── vega_3678.vg.json │ │ ├── vega_3679.vg.json │ │ ├── vega_3680.vg.json │ │ ├── vega_3681.vg.json │ │ ├── vega_3682.vg.json │ │ ├── vega_3683.vg.json │ │ ├── vega_3684.vg.json │ │ ├── vega_3685.vg.json │ │ ├── vega_3686.vg.json │ │ ├── vega_3687.vg.json │ │ ├── vega_3688.vg.json │ │ ├── vega_3689.vg.json │ │ ├── vega_3690.vg.json │ │ ├── vega_3691.vg.json │ │ ├── vega_3692.vg.json │ │ ├── vega_3693.vg.json │ │ ├── vega_3694.vg.json │ │ ├── vega_3695.vg.json │ │ ├── vega_3696.vg.json │ │ ├── vega_3697.vg.json │ │ ├── vega_3698.vg.json │ │ ├── vega_3699.vg.json │ │ ├── vega_3700.vg.json │ │ ├── vega_3701.vg.json │ │ ├── vega_3702.vg.json │ │ ├── vega_3703.vg.json │ │ ├── vega_3704.vg.json │ │ ├── vega_3705.vg.json │ │ ├── vega_3706.vg.json │ │ ├── vega_3707.vg.json │ │ ├── vega_3708.vg.json │ │ ├── vega_3709.vg.json │ │ ├── vega_3710.vg.json │ │ ├── vega_3711.vg.json │ │ ├── vega_3712.vg.json │ │ ├── vega_3713.vg.json │ │ ├── vega_3714.vg.json │ │ ├── vega_3715.vg.json │ │ ├── vega_3716.vg.json │ │ ├── vega_3717.vg.json │ │ ├── vega_3718.vg.json │ │ ├── vega_3719.vg.json │ │ ├── vega_3720.vg.json │ │ ├── vega_3721.vg.json │ │ ├── vega_3722.vg.json │ │ ├── vega_3723.vg.json │ │ ├── vega_3724.vg.json │ │ ├── vega_3725.vg.json │ │ ├── vega_3726.vg.json │ │ ├── vega_3727.vg.json │ │ ├── vega_3728.vg.json │ │ ├── vega_3729.vg.json │ │ ├── vega_3730.vg.json │ │ ├── vega_3731.vg.json │ │ ├── vega_3732.vg.json │ │ ├── vega_3733.vg.json │ │ ├── vega_3734.vg.json │ │ ├── vega_3735.vg.json │ │ ├── vega_3736.vg.json │ │ ├── vega_3737.vg.json │ │ ├── vega_3738.vg.json │ │ ├── vega_3739.vg.json │ │ ├── vega_3740.vg.json │ │ ├── vega_3741.vg.json │ │ ├── vega_3742.vg.json │ │ ├── vega_3743.vg.json │ │ ├── vega_3744.vg.json │ │ ├── vega_3745.vg.json │ │ ├── vega_3746.vg.json │ │ ├── vega_3747.vg.json │ │ ├── vega_3748.vg.json │ │ ├── vega_3749.vg.json │ │ ├── vega_3750.vg.json │ │ ├── vega_3751.vg.json │ │ ├── vega_3752.vg.json │ │ ├── vega_3753.vg.json │ │ ├── vega_3754.vg.json │ │ ├── vega_3755.vg.json │ │ ├── vega_3756.vg.json │ │ ├── vega_3757.vg.json │ │ ├── vega_3758.vg.json │ │ ├── vega_3759.vg.json │ │ ├── vega_3760.vg.json │ │ ├── vega_3761.vg.json │ │ ├── vega_3762.vg.json │ │ ├── vega_3763.vg.json │ │ ├── vega_3764.vg.json │ │ ├── vega_3765.vg.json │ │ ├── vega_3766.vg.json │ │ ├── vega_3767.vg.json │ │ ├── vega_3768.vg.json │ │ ├── vega_3769.vg.json │ │ ├── vega_3770.vg.json │ │ ├── vega_3771.vg.json │ │ ├── vega_3772.vg.json │ │ ├── vega_3773.vg.json │ │ ├── vega_3774.vg.json │ │ ├── vega_3775.vg.json │ │ ├── vega_3776.vg.json │ │ ├── vega_3777.vg.json │ │ ├── vega_3778.vg.json │ │ ├── vega_3779.vg.json │ │ ├── vega_3780.vg.json │ │ ├── vega_3781.vg.json │ │ ├── vega_3782.vg.json │ │ ├── vega_3783.vg.json │ │ ├── vega_3784.vg.json │ │ ├── vega_3785.vg.json │ │ ├── vega_3786.vg.json │ │ ├── vega_3787.vg.json │ │ ├── vega_3788.vg.json │ │ ├── vega_3789.vg.json │ │ ├── vega_3790.vg.json │ │ ├── vega_3791.vg.json │ │ ├── vega_3792.vg.json │ │ ├── vega_3793.vg.json │ │ ├── vega_3794.vg.json │ │ ├── vega_3795.vg.json │ │ ├── vega_3796.vg.json │ │ ├── vega_3797.vg.json │ │ ├── vega_3798.vg.json │ │ ├── vega_3799.vg.json │ │ ├── vega_3800.vg.json │ │ ├── vega_3801.vg.json │ │ ├── vega_3802.vg.json │ │ ├── vega_3803.vg.json │ │ ├── vega_3804.vg.json │ │ ├── vega_3805.vg.json │ │ ├── vega_3806.vg.json │ │ ├── vega_3807.vg.json │ │ ├── vega_3808.vg.json │ │ ├── vega_3809.vg.json │ │ ├── vega_3810.vg.json │ │ ├── vega_3811.vg.json │ │ ├── vega_3812.vg.json │ │ ├── vega_3813.vg.json │ │ ├── vega_3814.vg.json │ │ ├── vega_3815.vg.json │ │ ├── vega_3816.vg.json │ │ ├── vega_3817.vg.json │ │ ├── vega_3818.vg.json │ │ ├── vega_3819.vg.json │ │ ├── vega_3820.vg.json │ │ ├── vega_3821.vg.json │ │ ├── vega_3822.vg.json │ │ ├── vega_3823.vg.json │ │ ├── vega_3824.vg.json │ │ ├── vega_3825.vg.json │ │ ├── vega_3826.vg.json │ │ ├── vega_3827.vg.json │ │ ├── vega_3828.vg.json │ │ ├── vega_3829.vg.json │ │ ├── vega_3830.vg.json │ │ ├── vega_3831.vg.json │ │ ├── vega_3832.vg.json │ │ ├── vega_3833.vg.json │ │ ├── vega_3834.vg.json │ │ ├── vega_3835.vg.json │ │ ├── vega_3836.vg.json │ │ ├── vega_3837.vg.json │ │ ├── vega_3838.vg.json │ │ ├── vega_3839.vg.json │ │ ├── vega_3840.vg.json │ │ ├── vega_3841.vg.json │ │ ├── vega_3842.vg.json │ │ ├── vega_3843.vg.json │ │ ├── vega_3844.vg.json │ │ ├── vega_3845.vg.json │ │ ├── vega_3846.vg.json │ │ ├── vega_3847.vg.json │ │ ├── vega_3848.vg.json │ │ ├── vega_3849.vg.json │ │ ├── vega_3850.vg.json │ │ ├── vega_3851.vg.json │ │ ├── vega_3852.vg.json │ │ ├── vega_3853.vg.json │ │ ├── vega_3854.vg.json │ │ ├── vega_3855.vg.json │ │ ├── vega_3856.vg.json │ │ ├── vega_3857.vg.json │ │ ├── vega_3858.vg.json │ │ ├── vega_3859.vg.json │ │ ├── vega_3860.vg.json │ │ ├── vega_3861.vg.json │ │ ├── vega_3862.vg.json │ │ ├── vega_3863.vg.json │ │ ├── vega_3864.vg.json │ │ ├── vega_3865.vg.json │ │ ├── vega_3866.vg.json │ │ ├── vega_3867.vg.json │ │ ├── vega_3868.vg.json │ │ ├── vega_3869.vg.json │ │ ├── vega_3870.vg.json │ │ ├── vega_3871.vg.json │ │ ├── vega_3872.vg.json │ │ ├── vega_3873.vg.json │ │ ├── vega_3874.vg.json │ │ ├── vega_3875.vg.json │ │ ├── vega_3876.vg.json │ │ ├── vega_3877.vg.json │ │ ├── vega_3878.vg.json │ │ ├── vega_3879.vg.json │ │ ├── vega_3880.vg.json │ │ ├── vega_3881.vg.json │ │ ├── vega_3882.vg.json │ │ ├── vega_3883.vg.json │ │ ├── vega_3884.vg.json │ │ ├── vega_3885.vg.json │ │ ├── vega_3886.vg.json │ │ ├── vega_3887.vg.json │ │ ├── vega_3888.vg.json │ │ ├── vega_3889.vg.json │ │ ├── vega_3890.vg.json │ │ ├── vega_3891.vg.json │ │ ├── vega_3892.vg.json │ │ ├── vega_3893.vg.json │ │ ├── vega_3894.vg.json │ │ ├── vega_3895.vg.json │ │ ├── vega_3896.vg.json │ │ ├── vega_3897.vg.json │ │ ├── vega_3898.vg.json │ │ ├── vega_3899.vg.json │ │ ├── vega_3900.vg.json │ │ ├── vega_3901.vg.json │ │ ├── vega_3902.vg.json │ │ ├── vega_3903.vg.json │ │ ├── vega_3904.vg.json │ │ ├── vega_3905.vg.json │ │ ├── vega_3906.vg.json │ │ ├── vega_3907.vg.json │ │ ├── vega_3908.vg.json │ │ ├── vega_3909.vg.json │ │ ├── vega_3910.vg.json │ │ ├── vega_3911.vg.json │ │ ├── vega_3912.vg.json │ │ ├── vega_3913.vg.json │ │ ├── vega_3914.vg.json │ │ ├── vega_3915.vg.json │ │ ├── vega_3916.vg.json │ │ ├── vega_3917.vg.json │ │ ├── vega_3918.vg.json │ │ ├── vega_3919.vg.json │ │ ├── vega_3920.vg.json │ │ ├── vega_3921.vg.json │ │ ├── vega_3922.vg.json │ │ ├── vega_3923.vg.json │ │ ├── vega_3924.vg.json │ │ ├── vega_3925.vg.json │ │ ├── vega_3926.vg.json │ │ ├── vega_3927.vg.json │ │ ├── vega_3928.vg.json │ │ ├── vega_3929.vg.json │ │ ├── vega_3930.vg.json │ │ ├── vega_3931.vg.json │ │ ├── vega_3932.vg.json │ │ ├── vega_3933.vg.json │ │ ├── vega_3934.vg.json │ │ ├── vega_3935.vg.json │ │ ├── vega_3936.vg.json │ │ ├── vega_3937.vg.json │ │ ├── vega_3938.vg.json │ │ ├── vega_3939.vg.json │ │ ├── vega_3940.vg.json │ │ ├── vega_3941.vg.json │ │ ├── vega_3942.vg.json │ │ ├── vega_3943.vg.json │ │ ├── vega_3944.vg.json │ │ ├── vega_3945.vg.json │ │ ├── vega_3946.vg.json │ │ ├── vega_3947.vg.json │ │ ├── vega_3948.vg.json │ │ ├── vega_3949.vg.json │ │ ├── vega_3950.vg.json │ │ ├── vega_3951.vg.json │ │ ├── vega_3952.vg.json │ │ ├── vega_3953.vg.json │ │ ├── vega_3954.vg.json │ │ ├── vega_3955.vg.json │ │ ├── vega_3956.vg.json │ │ ├── vega_3957.vg.json │ │ ├── vega_3958.vg.json │ │ ├── vega_3959.vg.json │ │ ├── vega_3960.vg.json │ │ ├── vega_3961.vg.json │ │ ├── vega_3962.vg.json │ │ ├── vega_3963.vg.json │ │ ├── vega_3964.vg.json │ │ ├── vega_3965.vg.json │ │ ├── vega_3966.vg.json │ │ ├── vega_3967.vg.json │ │ ├── vega_3968.vg.json │ │ ├── vega_3969.vg.json │ │ ├── vega_3970.vg.json │ │ ├── vega_3971.vg.json │ │ ├── vega_3972.vg.json │ │ ├── vega_3973.vg.json │ │ ├── vega_3974.vg.json │ │ ├── vega_3975.vg.json │ │ ├── vega_3976.vg.json │ │ ├── vega_3977.vg.json │ │ ├── vega_3978.vg.json │ │ ├── vega_3979.vg.json │ │ ├── vega_3980.vg.json │ │ ├── vega_3981.vg.json │ │ ├── vega_3982.vg.json │ │ ├── vega_3983.vg.json │ │ ├── vega_3984.vg.json │ │ ├── vega_3985.vg.json │ │ ├── vega_3986.vg.json │ │ ├── vega_3987.vg.json │ │ ├── vega_3988.vg.json │ │ ├── vega_3989.vg.json │ │ ├── vega_3990.vg.json │ │ ├── vega_3991.vg.json │ │ ├── vega_3992.vg.json │ │ ├── vega_3993.vg.json │ │ ├── vega_3994.vg.json │ │ ├── vega_3995.vg.json │ │ ├── vega_3996.vg.json │ │ ├── vega_3997.vg.json │ │ ├── vega_3998.vg.json │ │ ├── vega_3999.vg.json │ │ ├── vega_4000.vg.json │ │ ├── vega_4001.vg.json │ │ ├── vega_4002.vg.json │ │ ├── vega_4003.vg.json │ │ ├── vega_4004.vg.json │ │ ├── vega_4005.vg.json │ │ ├── vega_4006.vg.json │ │ ├── vega_4007.vg.json │ │ ├── vega_4008.vg.json │ │ ├── vega_4009.vg.json │ │ ├── vega_4010.vg.json │ │ ├── vega_4011.vg.json │ │ ├── vega_4012.vg.json │ │ ├── vega_4013.vg.json │ │ ├── vega_4014.vg.json │ │ ├── vega_4015.vg.json │ │ ├── vega_4016.vg.json │ │ ├── vega_4017.vg.json │ │ ├── vega_4018.vg.json │ │ ├── vega_4019.vg.json │ │ ├── vega_4020.vg.json │ │ ├── vega_4021.vg.json │ │ ├── vega_4022.vg.json │ │ ├── vega_4023.vg.json │ │ ├── vega_4024.vg.json │ │ ├── vega_4025.vg.json │ │ ├── vega_4026.vg.json │ │ ├── vega_4027.vg.json │ │ ├── vega_4028.vg.json │ │ ├── vega_4029.vg.json │ │ ├── vega_4030.vg.json │ │ ├── vega_4031.vg.json │ │ ├── vega_4032.vg.json │ │ ├── vega_4033.vg.json │ │ ├── vega_4034.vg.json │ │ ├── vega_4035.vg.json │ │ ├── vega_4036.vg.json │ │ ├── vega_4037.vg.json │ │ ├── vega_4038.vg.json │ │ ├── vega_4039.vg.json │ │ ├── vega_4040.vg.json │ │ ├── vega_4041.vg.json │ │ ├── vega_4042.vg.json │ │ ├── vega_4043.vg.json │ │ ├── vega_4044.vg.json │ │ ├── vega_4045.vg.json │ │ ├── vega_4046.vg.json │ │ ├── vega_4047.vg.json │ │ ├── vega_4048.vg.json │ │ ├── vega_4049.vg.json │ │ ├── vega_4050.vg.json │ │ ├── vega_4051.vg.json │ │ ├── vega_4052.vg.json │ │ ├── vega_4053.vg.json │ │ ├── vega_4054.vg.json │ │ ├── vega_4055.vg.json │ │ ├── vega_4056.vg.json │ │ ├── vega_4057.vg.json │ │ ├── vega_4058.vg.json │ │ ├── vega_4059.vg.json │ │ ├── vega_4060.vg.json │ │ ├── vega_4061.vg.json │ │ ├── vega_4062.vg.json │ │ ├── vega_4063.vg.json │ │ ├── vega_4064.vg.json │ │ ├── vega_4065.vg.json │ │ ├── vega_4066.vg.json │ │ ├── vega_4067.vg.json │ │ ├── vega_4068.vg.json │ │ ├── vega_4069.vg.json │ │ ├── vega_4070.vg.json │ │ ├── vega_4071.vg.json │ │ ├── vega_4072.vg.json │ │ ├── vega_4073.vg.json │ │ ├── vega_4074.vg.json │ │ ├── vega_4075.vg.json │ │ ├── vega_4076.vg.json │ │ ├── vega_4077.vg.json │ │ ├── vega_4078.vg.json │ │ ├── vega_4079.vg.json │ │ ├── vega_4080.vg.json │ │ ├── vega_4081.vg.json │ │ ├── vega_4082.vg.json │ │ ├── vega_4083.vg.json │ │ ├── vega_4084.vg.json │ │ ├── vega_4085.vg.json │ │ ├── vega_4086.vg.json │ │ ├── vega_4087.vg.json │ │ ├── vega_4088.vg.json │ │ ├── vega_4089.vg.json │ │ ├── vega_4090.vg.json │ │ ├── vega_4091.vg.json │ │ ├── vega_4092.vg.json │ │ ├── vega_4093.vg.json │ │ ├── vega_4094.vg.json │ │ ├── vega_4095.vg.json │ │ ├── vega_4096.vg.json │ │ ├── vega_4097.vg.json │ │ ├── vega_4098.vg.json │ │ ├── vega_4099.vg.json │ │ ├── vega_4100.vg.json │ │ ├── vega_4101.vg.json │ │ ├── vega_4102.vg.json │ │ ├── vega_4103.vg.json │ │ ├── vega_4104.vg.json │ │ ├── vega_4105.vg.json │ │ ├── vega_4106.vg.json │ │ ├── vega_4107.vg.json │ │ ├── vega_4108.vg.json │ │ ├── vega_4109.vg.json │ │ ├── vega_4110.vg.json │ │ ├── vega_4111.vg.json │ │ ├── vega_4112.vg.json │ │ ├── vega_4113.vg.json │ │ ├── vega_4114.vg.json │ │ ├── vega_4115.vg.json │ │ ├── vega_4116.vg.json │ │ ├── vega_4117.vg.json │ │ ├── vega_4118.vg.json │ │ ├── vega_4119.vg.json │ │ ├── vega_4120.vg.json │ │ ├── vega_4121.vg.json │ │ ├── vega_4122.vg.json │ │ ├── vega_4123.vg.json │ │ ├── vega_4124.vg.json │ │ ├── vega_4125.vg.json │ │ ├── vega_4126.vg.json │ │ ├── vega_4127.vg.json │ │ ├── vega_4128.vg.json │ │ ├── vega_4129.vg.json │ │ ├── vega_4130.vg.json │ │ ├── vega_4131.vg.json │ │ ├── vega_4132.vg.json │ │ ├── vega_4133.vg.json │ │ ├── vega_4134.vg.json │ │ ├── vega_4135.vg.json │ │ ├── vega_4136.vg.json │ │ ├── vega_4137.vg.json │ │ ├── vega_4138.vg.json │ │ ├── vega_4139.vg.json │ │ ├── vega_4140.vg.json │ │ ├── vega_4141.vg.json │ │ ├── vega_4142.vg.json │ │ ├── vega_4143.vg.json │ │ ├── vega_4144.vg.json │ │ ├── vega_4145.vg.json │ │ ├── vega_4146.vg.json │ │ ├── vega_4147.vg.json │ │ ├── vega_4148.vg.json │ │ ├── vega_4149.vg.json │ │ ├── vega_4150.vg.json │ │ ├── vega_4151.vg.json │ │ ├── vega_4152.vg.json │ │ ├── vega_4153.vg.json │ │ ├── vega_4154.vg.json │ │ ├── vega_4155.vg.json │ │ ├── vega_4156.vg.json │ │ ├── vega_4157.vg.json │ │ ├── vega_4158.vg.json │ │ ├── vega_4159.vg.json │ │ ├── vega_4160.vg.json │ │ ├── vega_4161.vg.json │ │ ├── vega_4162.vg.json │ │ ├── vega_4163.vg.json │ │ ├── vega_4164.vg.json │ │ ├── vega_4165.vg.json │ │ ├── vega_4166.vg.json │ │ ├── vega_4167.vg.json │ │ ├── vega_4168.vg.json │ │ ├── vega_4169.vg.json │ │ ├── vega_4170.vg.json │ │ ├── vega_4171.vg.json │ │ ├── vega_4172.vg.json │ │ ├── vega_4173.vg.json │ │ ├── vega_4174.vg.json │ │ ├── vega_4175.vg.json │ │ ├── vega_4176.vg.json │ │ ├── vega_4177.vg.json │ │ ├── vega_4178.vg.json │ │ ├── vega_4179.vg.json │ │ ├── vega_4180.vg.json │ │ ├── vega_4181.vg.json │ │ ├── vega_4182.vg.json │ │ ├── vega_4183.vg.json │ │ ├── vega_4184.vg.json │ │ ├── vega_4185.vg.json │ │ ├── vega_4186.vg.json │ │ ├── vega_4187.vg.json │ │ ├── vega_4188.vg.json │ │ ├── vega_4189.vg.json │ │ ├── vega_4190.vg.json │ │ ├── vega_4191.vg.json │ │ ├── vega_4192.vg.json │ │ ├── vega_4193.vg.json │ │ ├── vega_4194.vg.json │ │ ├── vega_4195.vg.json │ │ ├── vega_4196.vg.json │ │ ├── vega_4197.vg.json │ │ ├── vega_4198.vg.json │ │ ├── vega_4199.vg.json │ │ ├── vega_4200.vg.json │ │ ├── vega_4201.vg.json │ │ ├── vega_4202.vg.json │ │ ├── vega_4203.vg.json │ │ ├── vega_4204.vg.json │ │ ├── vega_4205.vg.json │ │ ├── vega_4206.vg.json │ │ ├── vega_4207.vg.json │ │ ├── vega_4208.vg.json │ │ ├── vega_4209.vg.json │ │ ├── vega_4210.vg.json │ │ ├── vega_4211.vg.json │ │ ├── vega_4212.vg.json │ │ ├── vega_4213.vg.json │ │ ├── vega_4214.vg.json │ │ ├── vega_4215.vg.json │ │ ├── vega_4216.vg.json │ │ ├── vega_4217.vg.json │ │ ├── vega_4218.vg.json │ │ ├── vega_4219.vg.json │ │ ├── vega_4220.vg.json │ │ ├── vega_4221.vg.json │ │ ├── vega_4222.vg.json │ │ ├── vega_4223.vg.json │ │ ├── vega_4224.vg.json │ │ ├── vega_4225.vg.json │ │ ├── vega_4226.vg.json │ │ ├── vega_4227.vg.json │ │ ├── vega_4228.vg.json │ │ ├── vega_4229.vg.json │ │ ├── vega_4230.vg.json │ │ ├── vega_4231.vg.json │ │ ├── vega_4232.vg.json │ │ ├── vega_4233.vg.json │ │ ├── vega_4234.vg.json │ │ ├── vega_4235.vg.json │ │ ├── vega_4236.vg.json │ │ ├── vega_4237.vg.json │ │ ├── vega_4238.vg.json │ │ ├── vega_4239.vg.json │ │ ├── vega_4240.vg.json │ │ ├── vega_4241.vg.json │ │ ├── vega_4242.vg.json │ │ ├── vega_4243.vg.json │ │ ├── vega_4244.vg.json │ │ ├── vega_4245.vg.json │ │ ├── vega_4246.vg.json │ │ ├── vega_4247.vg.json │ │ ├── vega_4248.vg.json │ │ ├── vega_4249.vg.json │ │ ├── vega_4250.vg.json │ │ ├── vega_4251.vg.json │ │ ├── vega_4252.vg.json │ │ ├── vega_4253.vg.json │ │ ├── vega_4254.vg.json │ │ ├── vega_4255.vg.json │ │ ├── vega_4256.vg.json │ │ ├── vega_4257.vg.json │ │ ├── vega_4258.vg.json │ │ ├── vega_4259.vg.json │ │ ├── vega_4260.vg.json │ │ ├── vega_4261.vg.json │ │ ├── vega_4262.vg.json │ │ ├── vega_4263.vg.json │ │ ├── vega_4264.vg.json │ │ ├── vega_4265.vg.json │ │ ├── vega_4266.vg.json │ │ ├── vega_4267.vg.json │ │ ├── vega_4268.vg.json │ │ ├── vega_4269.vg.json │ │ ├── vega_4270.vg.json │ │ ├── vega_4271.vg.json │ │ ├── vega_4272.vg.json │ │ ├── vega_4273.vg.json │ │ ├── vega_4274.vg.json │ │ ├── vega_4275.vg.json │ │ ├── vega_4276.vg.json │ │ ├── vega_4277.vg.json │ │ ├── vega_4278.vg.json │ │ ├── vega_4279.vg.json │ │ ├── vega_4280.vg.json │ │ ├── vega_4281.vg.json │ │ ├── vega_4282.vg.json │ │ ├── vega_4283.vg.json │ │ ├── vega_4284.vg.json │ │ ├── vega_4285.vg.json │ │ ├── vega_4286.vg.json │ │ ├── vega_4287.vg.json │ │ ├── vega_4288.vg.json │ │ ├── vega_4289.vg.json │ │ ├── vega_4290.vg.json │ │ ├── vega_4291.vg.json │ │ ├── vega_4292.vg.json │ │ ├── vega_4293.vg.json │ │ ├── vega_4294.vg.json │ │ ├── vega_4295.vg.json │ │ ├── vega_4296.vg.json │ │ ├── vega_4297.vg.json │ │ ├── vega_4298.vg.json │ │ ├── vega_4299.vg.json │ │ ├── vega_4300.vg.json │ │ ├── vega_4301.vg.json │ │ ├── vega_4302.vg.json │ │ ├── vega_4303.vg.json │ │ ├── vega_4304.vg.json │ │ ├── vega_4305.vg.json │ │ ├── vega_4306.vg.json │ │ ├── vega_4307.vg.json │ │ ├── vega_4308.vg.json │ │ ├── vega_4309.vg.json │ │ ├── vega_4310.vg.json │ │ ├── vega_4311.vg.json │ │ ├── vega_4312.vg.json │ │ ├── vega_4313.vg.json │ │ ├── vega_4314.vg.json │ │ ├── vega_4315.vg.json │ │ ├── vega_4316.vg.json │ │ ├── vega_4317.vg.json │ │ ├── vega_4318.vg.json │ │ ├── vega_4319.vg.json │ │ ├── vega_4320.vg.json │ │ ├── vega_4321.vg.json │ │ ├── vega_4322.vg.json │ │ ├── vega_4323.vg.json │ │ ├── vega_4324.vg.json │ │ ├── vega_4325.vg.json │ │ ├── vega_4326.vg.json │ │ ├── vega_4327.vg.json │ │ ├── vega_4328.vg.json │ │ ├── vega_4329.vg.json │ │ ├── vega_4330.vg.json │ │ ├── vega_4331.vg.json │ │ ├── vega_4332.vg.json │ │ ├── vega_4333.vg.json │ │ ├── vega_4334.vg.json │ │ ├── vega_4335.vg.json │ │ ├── vega_4336.vg.json │ │ ├── vega_4337.vg.json │ │ ├── vega_4338.vg.json │ │ ├── vega_4339.vg.json │ │ ├── vega_4340.vg.json │ │ ├── vega_4341.vg.json │ │ ├── vega_4342.vg.json │ │ ├── vega_4343.vg.json │ │ ├── vega_4344.vg.json │ │ ├── vega_4345.vg.json │ │ ├── vega_4346.vg.json │ │ ├── vega_4347.vg.json │ │ ├── vega_4348.vg.json │ │ ├── vega_4349.vg.json │ │ ├── vega_4350.vg.json │ │ ├── vega_4351.vg.json │ │ ├── vega_4352.vg.json │ │ ├── vega_4353.vg.json │ │ ├── vega_4354.vg.json │ │ ├── vega_4355.vg.json │ │ ├── vega_4356.vg.json │ │ ├── vega_4357.vg.json │ │ ├── vega_4358.vg.json │ │ ├── vega_4359.vg.json │ │ ├── vega_4360.vg.json │ │ ├── vega_4361.vg.json │ │ ├── vega_4362.vg.json │ │ ├── vega_4363.vg.json │ │ ├── vega_4364.vg.json │ │ ├── vega_4365.vg.json │ │ ├── vega_4366.vg.json │ │ ├── vega_4367.vg.json │ │ ├── vega_4368.vg.json │ │ ├── vega_4369.vg.json │ │ ├── vega_4370.vg.json │ │ ├── vega_4371.vg.json │ │ ├── vega_4372.vg.json │ │ ├── vega_4373.vg.json │ │ ├── vega_4374.vg.json │ │ ├── vega_4375.vg.json │ │ ├── vega_4376.vg.json │ │ ├── vega_4377.vg.json │ │ ├── vega_4378.vg.json │ │ ├── vega_4379.vg.json │ │ ├── vega_4380.vg.json │ │ ├── vega_4381.vg.json │ │ ├── vega_4382.vg.json │ │ ├── vega_4383.vg.json │ │ ├── vega_4384.vg.json │ │ ├── vega_4385.vg.json │ │ ├── vega_4386.vg.json │ │ ├── vega_4387.vg.json │ │ ├── vega_4388.vg.json │ │ ├── vega_4389.vg.json │ │ ├── vega_4391.vg.json │ │ ├── vega_4392.vg.json │ │ ├── vega_4393.vg.json │ │ ├── vega_4394.vg.json │ │ ├── vega_4395.vg.json │ │ ├── vega_4396.vg.json │ │ ├── vega_4397.vg.json │ │ ├── vega_4398.vg.json │ │ ├── vega_4399.vg.json │ │ ├── vega_4400.vg.json │ │ ├── vega_4401.vg.json │ │ ├── vega_4402.vg.json │ │ ├── vega_4403.vg.json │ │ ├── vega_4404.vg.json │ │ ├── vega_4405.vg.json │ │ ├── vega_4406.vg.json │ │ ├── vega_4407.vg.json │ │ ├── vega_4408.vg.json │ │ ├── vega_4409.vg.json │ │ ├── vega_4410.vg.json │ │ ├── vega_4411.vg.json │ │ ├── vega_4412.vg.json │ │ ├── vega_4413.vg.json │ │ ├── vega_4414.vg.json │ │ ├── vega_4415.vg.json │ │ ├── vega_4416.vg.json │ │ ├── vega_4417.vg.json │ │ ├── vega_4418.vg.json │ │ ├── vega_4419.vg.json │ │ ├── vega_4420.vg.json │ │ ├── vega_4421.vg.json │ │ ├── vega_4422.vg.json │ │ ├── vega_4423.vg.json │ │ ├── vega_4424.vg.json │ │ ├── vega_4425.vg.json │ │ ├── vega_4426.vg.json │ │ ├── vega_4427.vg.json │ │ ├── vega_4428.vg.json │ │ ├── vega_4429.vg.json │ │ ├── vega_4430.vg.json │ │ ├── vega_4431.vg.json │ │ ├── vega_4432.vg.json │ │ ├── vega_4433.vg.json │ │ ├── vega_4434.vg.json │ │ ├── vega_4435.vg.json │ │ ├── vega_4436.vg.json │ │ ├── vega_4437.vg.json │ │ ├── vega_4438.vg.json │ │ ├── vega_4439.vg.json │ │ ├── vega_4440.vg.json │ │ ├── vega_4441.vg.json │ │ ├── vega_4442.vg.json │ │ ├── vega_4443.vg.json │ │ ├── vega_4444.vg.json │ │ ├── vega_4445.vg.json │ │ ├── vega_4446.vg.json │ │ ├── vega_4447.vg.json │ │ ├── vega_4448.vg.json │ │ ├── vega_4449.vg.json │ │ ├── vega_4450.vg.json │ │ ├── vega_4451.vg.json │ │ ├── vega_4452.vg.json │ │ ├── vega_4453.vg.json │ │ ├── vega_4454.vg.json │ │ ├── vega_4455.vg.json │ │ ├── vega_4456.vg.json │ │ ├── vega_4457.vg.json │ │ ├── vega_4458.vg.json │ │ ├── vega_4459.vg.json │ │ ├── vega_4460.vg.json │ │ ├── vega_4461.vg.json │ │ ├── vega_4462.vg.json │ │ ├── vega_4463.vg.json │ │ ├── vega_4464.vg.json │ │ ├── vega_4465.vg.json │ │ ├── vega_4466.vg.json │ │ ├── vega_4467.vg.json │ │ ├── vega_4468.vg.json │ │ ├── vega_4469.vg.json │ │ ├── vega_4470.vg.json │ │ ├── vega_4471.vg.json │ │ ├── vega_4472.vg.json │ │ ├── vega_4473.vg.json │ │ ├── vega_4474.vg.json │ │ ├── vega_4475.vg.json │ │ ├── vega_4476.vg.json │ │ ├── vega_4477.vg.json │ │ ├── vega_4478.vg.json │ │ ├── vega_4479.vg.json │ │ ├── vega_4480.vg.json │ │ ├── vega_4481.vg.json │ │ ├── vega_4482.vg.json │ │ ├── vega_4483.vg.json │ │ ├── vega_4484.vg.json │ │ ├── vega_4485.vg.json │ │ ├── vega_4486.vg.json │ │ ├── vega_4487.vg.json │ │ ├── vega_4488.vg.json │ │ ├── vega_4489.vg.json │ │ ├── vega_4490.vg.json │ │ ├── vega_4491.vg.json │ │ ├── vega_4492.vg.json │ │ ├── vega_4493.vg.json │ │ ├── vega_4494.vg.json │ │ ├── vega_4495.vg.json │ │ ├── vega_4496.vg.json │ │ ├── vega_4497.vg.json │ │ ├── vega_4498.vg.json │ │ ├── vega_4499.vg.json │ │ ├── vega_4500.vg.json │ │ ├── vega_4501.vg.json │ │ ├── vega_4502.vg.json │ │ ├── vega_4503.vg.json │ │ ├── vega_4504.vg.json │ │ ├── vega_4505.vg.json │ │ ├── vega_4506.vg.json │ │ ├── vega_4507.vg.json │ │ ├── vega_4508.vg.json │ │ ├── vega_4509.vg.json │ │ ├── vega_4510.vg.json │ │ ├── vega_4511.vg.json │ │ ├── vega_4512.vg.json │ │ ├── vega_4513.vg.json │ │ ├── vega_4514.vg.json │ │ ├── vega_4515.vg.json │ │ ├── vega_4516.vg.json │ │ ├── vega_4517.vg.json │ │ ├── vega_4518.vg.json │ │ ├── vega_4519.vg.json │ │ ├── vega_4520.vg.json │ │ ├── vega_4521.vg.json │ │ ├── vega_4522.vg.json │ │ ├── vega_4523.vg.json │ │ ├── vega_4524.vg.json │ │ ├── vega_4525.vg.json │ │ ├── vega_4526.vg.json │ │ ├── vega_4527.vg.json │ │ ├── vega_4528.vg.json │ │ ├── vega_4529.vg.json │ │ ├── vega_4530.vg.json │ │ ├── vega_4531.vg.json │ │ ├── vega_4532.vg.json │ │ ├── vega_4533.vg.json │ │ ├── vega_4534.vg.json │ │ ├── vega_4535.vg.json │ │ ├── vega_4536.vg.json │ │ ├── vega_4537.vg.json │ │ ├── vega_4538.vg.json │ │ ├── vega_4539.vg.json │ │ ├── vega_4540.vg.json │ │ ├── vega_4541.vg.json │ │ ├── vega_4542.vg.json │ │ ├── vega_4543.vg.json │ │ ├── vega_4544.vg.json │ │ ├── vega_4545.vg.json │ │ ├── vega_4546.vg.json │ │ ├── vega_4547.vg.json │ │ ├── vega_4548.vg.json │ │ ├── vega_4549.vg.json │ │ ├── vega_4550.vg.json │ │ ├── vega_4551.vg.json │ │ ├── vega_4552.vg.json │ │ ├── vega_4553.vg.json │ │ ├── vega_4554.vg.json │ │ ├── vega_4555.vg.json │ │ ├── vega_4556.vg.json │ │ ├── vega_4557.vg.json │ │ ├── vega_4558.vg.json │ │ ├── vega_4559.vg.json │ │ ├── vega_4560.vg.json │ │ ├── vega_4561.vg.json │ │ ├── vega_4562.vg.json │ │ ├── vega_4563.vg.json │ │ ├── vega_4564.vg.json │ │ ├── vega_4565.vg.json │ │ ├── vega_4566.vg.json │ │ ├── vega_4567.vg.json │ │ ├── vega_4568.vg.json │ │ ├── vega_4569.vg.json │ │ ├── vega_4570.vg.json │ │ ├── vega_4571.vg.json │ │ ├── vega_4572.vg.json │ │ ├── vega_4573.vg.json │ │ ├── vega_4574.vg.json │ │ ├── vega_4575.vg.json │ │ ├── vega_4576.vg.json │ │ ├── vega_4577.vg.json │ │ ├── vega_4578.vg.json │ │ ├── vega_4579.vg.json │ │ ├── vega_4580.vg.json │ │ ├── vega_4581.vg.json │ │ ├── vega_4582.vg.json │ │ ├── vega_4583.vg.json │ │ ├── vega_4584.vg.json │ │ ├── vega_4585.vg.json │ │ ├── vega_4586.vg.json │ │ ├── vega_4587.vg.json │ │ ├── vega_4588.vg.json │ │ ├── vega_4589.vg.json │ │ ├── vega_4590.vg.json │ │ ├── vega_4591.vg.json │ │ ├── vega_4592.vg.json │ │ ├── vega_4593.vg.json │ │ ├── vega_4594.vg.json │ │ ├── vega_4595.vg.json │ │ ├── vega_4596.vg.json │ │ ├── vega_4597.vg.json │ │ ├── vega_4598.vg.json │ │ ├── vega_4599.vg.json │ │ ├── vega_4600.vg.json │ │ ├── vega_4601.vg.json │ │ ├── vega_4602.vg.json │ │ ├── vega_4603.vg.json │ │ ├── vega_4604.vg.json │ │ ├── vega_4605.vg.json │ │ ├── vega_4606.vg.json │ │ ├── vega_4607.vg.json │ │ ├── vega_4608.vg.json │ │ ├── vega_4609.vg.json │ │ ├── vega_4610.vg.json │ │ ├── vega_4611.vg.json │ │ ├── vega_4612.vg.json │ │ ├── vega_4613.vg.json │ │ ├── vega_4614.vg.json │ │ ├── vega_4615.vg.json │ │ ├── vega_4616.vg.json │ │ ├── vega_4617.vg.json │ │ ├── vega_4618.vg.json │ │ ├── vega_4619.vg.json │ │ ├── vega_4620.vg.json │ │ ├── vega_4621.vg.json │ │ ├── vega_4622.vg.json │ │ ├── vega_4623.vg.json │ │ ├── vega_4624.vg.json │ │ ├── vega_4625.vg.json │ │ ├── vega_4626.vg.json │ │ ├── vega_4627.vg.json │ │ ├── vega_4628.vg.json │ │ ├── vega_4629.vg.json │ │ ├── vega_4630.vg.json │ │ ├── vega_4631.vg.json │ │ ├── vega_4632.vg.json │ │ ├── vega_4633.vg.json │ │ ├── vega_4634.vg.json │ │ ├── vega_4635.vg.json │ │ ├── vega_4636.vg.json │ │ ├── vega_4637.vg.json │ │ ├── vega_4638.vg.json │ │ ├── vega_4639.vg.json │ │ ├── vega_4640.vg.json │ │ ├── vega_4641.vg.json │ │ ├── vega_4642.vg.json │ │ ├── vega_4643.vg.json │ │ ├── vega_4644.vg.json │ │ ├── vega_4645.vg.json │ │ ├── vega_4646.vg.json │ │ ├── vega_4647.vg.json │ │ ├── vega_4648.vg.json │ │ ├── vega_4649.vg.json │ │ ├── vega_4650.vg.json │ │ ├── vega_4651.vg.json │ │ ├── vega_4652.vg.json │ │ ├── vega_4653.vg.json │ │ ├── vega_4654.vg.json │ │ ├── vega_4655.vg.json │ │ ├── vega_4656.vg.json │ │ ├── vega_4657.vg.json │ │ ├── vega_4658.vg.json │ │ ├── vega_4659.vg.json │ │ ├── vega_4660.vg.json │ │ ├── vega_4661.vg.json │ │ ├── vega_4662.vg.json │ │ ├── vega_4663.vg.json │ │ ├── vega_4664.vg.json │ │ ├── vega_4665.vg.json │ │ ├── vega_4666.vg.json │ │ ├── vega_4667.vg.json │ │ ├── vega_4668.vg.json │ │ ├── vega_4669.vg.json │ │ ├── vega_4670.vg.json │ │ ├── vega_4671.vg.json │ │ ├── vega_4672.vg.json │ │ ├── vega_4673.vg.json │ │ ├── vega_4674.vg.json │ │ ├── vega_4675.vg.json │ │ ├── vega_4676.vg.json │ │ ├── vega_4677.vg.json │ │ ├── vega_4678.vg.json │ │ ├── vega_4679.vg.json │ │ ├── vega_4680.vg.json │ │ ├── vega_4681.vg.json │ │ ├── vega_4682.vg.json │ │ ├── vega_4683.vg.json │ │ ├── vega_4684.vg.json │ │ ├── vega_4685.vg.json │ │ ├── vega_4686.vg.json │ │ ├── vega_4687.vg.json │ │ ├── vega_4688.vg.json │ │ ├── vega_4689.vg.json │ │ ├── vega_4690.vg.json │ │ ├── vega_4691.vg.json │ │ ├── vega_4692.vg.json │ │ ├── vega_4693.vg.json │ │ ├── vega_4694.vg.json │ │ ├── vega_4695.vg.json │ │ ├── vega_4696.vg.json │ │ ├── vega_4697.vg.json │ │ ├── vega_4698.vg.json │ │ ├── vega_4699.vg.json │ │ ├── vega_4700.vg.json │ │ ├── vega_4701.vg.json │ │ ├── vega_4702.vg.json │ │ ├── vega_4703.vg.json │ │ ├── vega_4704.vg.json │ │ ├── vega_4705.vg.json │ │ ├── vega_4706.vg.json │ │ ├── vega_4707.vg.json │ │ ├── vega_4708.vg.json │ │ ├── vega_4709.vg.json │ │ ├── vega_4710.vg.json │ │ ├── vega_4711.vg.json │ │ ├── vega_4712.vg.json │ │ ├── vega_4713.vg.json │ │ ├── vega_4714.vg.json │ │ ├── vega_4715.vg.json │ │ ├── vega_4716.vg.json │ │ ├── vega_4717.vg.json │ │ ├── vega_4718.vg.json │ │ ├── vega_4719.vg.json │ │ ├── vega_4720.vg.json │ │ ├── vega_4721.vg.json │ │ ├── vega_4722.vg.json │ │ ├── vega_4723.vg.json │ │ ├── vega_4724.vg.json │ │ ├── vega_4725.vg.json │ │ ├── vega_4726.vg.json │ │ ├── vega_4727.vg.json │ │ ├── vega_4728.vg.json │ │ ├── vega_4729.vg.json │ │ ├── vega_4730.vg.json │ │ ├── vega_4731.vg.json │ │ ├── vega_4732.vg.json │ │ ├── vega_4733.vg.json │ │ ├── vega_4734.vg.json │ │ ├── vega_4735.vg.json │ │ ├── vega_4736.vg.json │ │ ├── vega_4737.vg.json │ │ ├── vega_4738.vg.json │ │ ├── vega_4739.vg.json │ │ ├── vega_4740.vg.json │ │ ├── vega_4741.vg.json │ │ ├── vega_4742.vg.json │ │ ├── vega_4743.vg.json │ │ ├── vega_4744.vg.json │ │ ├── vega_4745.vg.json │ │ ├── vega_4746.vg.json │ │ ├── vega_4747.vg.json │ │ ├── vega_4748.vg.json │ │ ├── vega_4749.vg.json │ │ ├── vega_4750.vg.json │ │ ├── vega_4751.vg.json │ │ ├── vega_4752.vg.json │ │ ├── vega_4753.vg.json │ │ ├── vega_4754.vg.json │ │ ├── vega_4755.vg.json │ │ ├── vega_4756.vg.json │ │ ├── vega_4757.vg.json │ │ ├── vega_4758.vg.json │ │ ├── vega_4759.vg.json │ │ ├── vega_4760.vg.json │ │ ├── vega_4761.vg.json │ │ ├── vega_4762.vg.json │ │ ├── vega_4763.vg.json │ │ ├── vega_4764.vg.json │ │ ├── vega_4765.vg.json │ │ ├── vega_4766.vg.json │ │ ├── vega_4767.vg.json │ │ ├── vega_4768.vg.json │ │ ├── vega_4769.vg.json │ │ ├── vega_4770.vg.json │ │ ├── vega_4771.vg.json │ │ ├── vega_4772.vg.json │ │ ├── vega_4773.vg.json │ │ ├── vega_4774.vg.json │ │ ├── vega_4775.vg.json │ │ ├── vega_4776.vg.json │ │ ├── vega_4777.vg.json │ │ ├── vega_4778.vg.json │ │ ├── vega_4779.vg.json │ │ ├── vega_4780.vg.json │ │ ├── vega_4781.vg.json │ │ ├── vega_4782.vg.json │ │ ├── vega_4783.vg.json │ │ ├── vega_4784.vg.json │ │ ├── vega_4785.vg.json │ │ ├── vega_4786.vg.json │ │ ├── vega_4787.vg.json │ │ ├── vega_4788.vg.json │ │ ├── vega_4789.vg.json │ │ ├── vega_4790.vg.json │ │ ├── vega_4791.vg.json │ │ ├── vega_4792.vg.json │ │ ├── vega_4793.vg.json │ │ ├── vega_4794.vg.json │ │ ├── vega_4795.vg.json │ │ ├── vega_4796.vg.json │ │ ├── vega_4797.vg.json │ │ ├── vega_4798.vg.json │ │ ├── vega_4799.vg.json │ │ ├── vega_4800.vg.json │ │ ├── vega_4801.vg.json │ │ ├── vega_4802.vg.json │ │ ├── vega_4803.vg.json │ │ ├── vega_4804.vg.json │ │ ├── vega_4805.vg.json │ │ ├── vega_4806.vg.json │ │ ├── vega_4807.vg.json │ │ ├── vega_4808.vg.json │ │ ├── vega_4809.vg.json │ │ ├── vega_4810.vg.json │ │ ├── vega_4811.vg.json │ │ ├── vega_4812.vg.json │ │ ├── vega_4813.vg.json │ │ ├── vega_4814.vg.json │ │ ├── vega_4815.vg.json │ │ ├── vega_4816.vg.json │ │ ├── vega_4817.vg.json │ │ ├── vega_4818.vg.json │ │ ├── vega_4819.vg.json │ │ ├── vega_4820.vg.json │ │ ├── vega_4821.vg.json │ │ ├── vega_4822.vg.json │ │ ├── vega_4823.vg.json │ │ ├── vega_4824.vg.json │ │ ├── vega_4825.vg.json │ │ ├── vega_4826.vg.json │ │ ├── vega_4827.vg.json │ │ ├── vega_4828.vg.json │ │ ├── vega_4829.vg.json │ │ ├── vega_4830.vg.json │ │ ├── vega_4831.vg.json │ │ ├── vega_4832.vg.json │ │ ├── vega_4833.vg.json │ │ ├── vega_4834.vg.json │ │ ├── vega_4835.vg.json │ │ ├── vega_4836.vg.json │ │ ├── vega_4837.vg.json │ │ ├── vega_4838.vg.json │ │ ├── vega_4839.vg.json │ │ ├── vega_4840.vg.json │ │ ├── vega_4841.vg.json │ │ ├── vega_4842.vg.json │ │ ├── vega_4843.vg.json │ │ ├── vega_4844.vg.json │ │ ├── vega_4845.vg.json │ │ ├── vega_4846.vg.json │ │ ├── vega_4847.vg.json │ │ ├── vega_4848.vg.json │ │ ├── vega_4849.vg.json │ │ ├── vega_4850.vg.json │ │ ├── vega_4851.vg.json │ │ ├── vega_4852.vg.json │ │ ├── vega_4853.vg.json │ │ ├── vega_4854.vg.json │ │ ├── vega_4855.vg.json │ │ ├── vega_4856.vg.json │ │ ├── vega_4857.vg.json │ │ ├── vega_4858.vg.json │ │ ├── vega_4859.vg.json │ │ ├── vega_4860.vg.json │ │ ├── vega_4861.vg.json │ │ ├── vega_4862.vg.json │ │ ├── vega_4863.vg.json │ │ ├── vega_4864.vg.json │ │ ├── vega_4865.vg.json │ │ ├── vega_4866.vg.json │ │ ├── vega_4867.vg.json │ │ ├── vega_4868.vg.json │ │ ├── vega_4869.vg.json │ │ ├── vega_4870.vg.json │ │ ├── vega_4871.vg.json │ │ ├── vega_4872.vg.json │ │ ├── vega_4873.vg.json │ │ ├── vega_4874.vg.json │ │ ├── vega_4875.vg.json │ │ ├── vega_4876.vg.json │ │ ├── vega_4877.vg.json │ │ ├── vega_4878.vg.json │ │ ├── vega_4879.vg.json │ │ ├── vega_4880.vg.json │ │ ├── vega_4881.vg.json │ │ ├── vega_4882.vg.json │ │ ├── vega_4883.vg.json │ │ ├── vega_4884.vg.json │ │ ├── vega_4885.vg.json │ │ ├── vega_4886.vg.json │ │ ├── vega_4887.vg.json │ │ ├── vega_4888.vg.json │ │ ├── vega_4889.vg.json │ │ ├── vega_4890.vg.json │ │ ├── vega_4891.vg.json │ │ ├── vega_4892.vg.json │ │ ├── vega_4893.vg.json │ │ ├── vega_4894.vg.json │ │ ├── vega_4895.vg.json │ │ ├── vega_4896.vg.json │ │ ├── vega_4897.vg.json │ │ ├── vega_4898.vg.json │ │ ├── vega_4899.vg.json │ │ ├── vega_4900.vg.json │ │ ├── vega_4901.vg.json │ │ ├── vega_4902.vg.json │ │ ├── vega_4903.vg.json │ │ ├── vega_4904.vg.json │ │ ├── vega_4905.vg.json │ │ ├── vega_4906.vg.json │ │ ├── vega_4907.vg.json │ │ ├── vega_4908.vg.json │ │ ├── vega_4909.vg.json │ │ ├── vega_4910.vg.json │ │ ├── vega_4911.vg.json │ │ ├── vega_4912.vg.json │ │ ├── vega_4913.vg.json │ │ ├── vega_4914.vg.json │ │ ├── vega_4915.vg.json │ │ ├── vega_4916.vg.json │ │ ├── vega_4917.vg.json │ │ ├── vega_4918.vg.json │ │ ├── vega_4919.vg.json │ │ ├── vega_4920.vg.json │ │ ├── vega_4921.vg.json │ │ ├── vega_4922.vg.json │ │ ├── vega_4923.vg.json │ │ ├── vega_4924.vg.json │ │ ├── vega_4925.vg.json │ │ ├── vega_4926.vg.json │ │ ├── vega_4927.vg.json │ │ ├── vega_4928.vg.json │ │ ├── vega_4929.vg.json │ │ ├── vega_4930.vg.json │ │ ├── vega_4931.vg.json │ │ ├── vega_4932.vg.json │ │ ├── vega_4933.vg.json │ │ ├── vega_4934.vg.json │ │ ├── vega_4935.vg.json │ │ ├── vega_4936.vg.json │ │ ├── vega_4937.vg.json │ │ ├── vega_4938.vg.json │ │ ├── vega_4939.vg.json │ │ ├── vega_4940.vg.json │ │ ├── vega_4941.vg.json │ │ ├── vega_4942.vg.json │ │ ├── vega_4943.vg.json │ │ ├── vega_4944.vg.json │ │ ├── vega_4945.vg.json │ │ ├── vega_4946.vg.json │ │ ├── vega_4947.vg.json │ │ ├── vega_4948.vg.json │ │ ├── vega_4949.vg.json │ │ ├── vega_4950.vg.json │ │ ├── vega_4951.vg.json │ │ ├── vega_4952.vg.json │ │ ├── vega_4953.vg.json │ │ ├── vega_4954.vg.json │ │ ├── vega_4955.vg.json │ │ ├── vega_4956.vg.json │ │ ├── vega_4957.vg.json │ │ ├── vega_4958.vg.json │ │ ├── vega_4959.vg.json │ │ ├── vega_4960.vg.json │ │ ├── vega_4961.vg.json │ │ ├── vega_4962.vg.json │ │ ├── vega_4963.vg.json │ │ ├── vega_4964.vg.json │ │ ├── vega_4965.vg.json │ │ ├── vega_4966.vg.json │ │ ├── vega_4967.vg.json │ │ ├── vega_4968.vg.json │ │ ├── vega_4969.vg.json │ │ ├── vega_4970.vg.json │ │ ├── vega_4971.vg.json │ │ ├── vega_4972.vg.json │ │ ├── vega_4973.vg.json │ │ ├── vega_4974.vg.json │ │ ├── vega_4975.vg.json │ │ ├── vega_4976.vg.json │ │ ├── vega_4977.vg.json │ │ ├── vega_4978.vg.json │ │ ├── vega_4979.vg.json │ │ ├── vega_4980.vg.json │ │ ├── vega_4981.vg.json │ │ ├── vega_4982.vg.json │ │ ├── vega_4983.vg.json │ │ ├── vega_4984.vg.json │ │ ├── vega_4985.vg.json │ │ ├── vega_4986.vg.json │ │ ├── vega_4987.vg.json │ │ ├── vega_4988.vg.json │ │ ├── vega_4989.vg.json │ │ ├── vega_4990.vg.json │ │ ├── vega_4991.vg.json │ │ ├── vega_4992.vg.json │ │ ├── vega_4993.vg.json │ │ ├── vega_4994.vg.json │ │ ├── vega_4995.vg.json │ │ ├── vega_4996.vg.json │ │ ├── vega_4997.vg.json │ │ ├── vega_4998.vg.json │ │ ├── vega_4999.vg.json │ │ ├── vega_5000.vg.json │ │ ├── vega_5001.vg.json │ │ ├── vega_5002.vg.json │ │ ├── vega_5003.vg.json │ │ ├── vega_5004.vg.json │ │ ├── vega_5005.vg.json │ │ ├── vega_5006.vg.json │ │ ├── vega_5007.vg.json │ │ ├── vega_5008.vg.json │ │ ├── vega_5009.vg.json │ │ ├── vega_5010.vg.json │ │ ├── vega_5011.vg.json │ │ ├── vega_5012.vg.json │ │ ├── vega_5013.vg.json │ │ ├── vega_5014.vg.json │ │ ├── vega_5015.vg.json │ │ ├── vega_5016.vg.json │ │ ├── vega_5017.vg.json │ │ ├── vega_5018.vg.json │ │ ├── vega_5019.vg.json │ │ ├── vega_5020.vg.json │ │ ├── vega_5021.vg.json │ │ ├── vega_5022.vg.json │ │ ├── vega_5023.vg.json │ │ ├── vega_5024.vg.json │ │ ├── vega_5025.vg.json │ │ ├── vega_5026.vg.json │ │ ├── vega_5027.vg.json │ │ ├── vega_5028.vg.json │ │ ├── vega_5029.vg.json │ │ ├── vega_5030.vg.json │ │ ├── vega_5031.vg.json │ │ ├── vega_5032.vg.json │ │ ├── vega_5033.vg.json │ │ ├── vega_5034.vg.json │ │ ├── vega_5035.vg.json │ │ ├── vega_5036.vg.json │ │ ├── vega_5037.vg.json │ │ ├── vega_5038.vg.json │ │ ├── vega_5039.vg.json │ │ ├── vega_5040.vg.json │ │ ├── vega_5041.vg.json │ │ ├── vega_5042.vg.json │ │ ├── vega_5043.vg.json │ │ ├── vega_5044.vg.json │ │ ├── vega_5045.vg.json │ │ ├── vega_5046.vg.json │ │ ├── vega_5047.vg.json │ │ ├── vega_5048.vg.json │ │ ├── vega_5049.vg.json │ │ ├── vega_5050.vg.json │ │ ├── vega_5051.vg.json │ │ ├── vega_5052.vg.json │ │ ├── vega_5053.vg.json │ │ ├── vega_5054.vg.json │ │ ├── vega_5055.vg.json │ │ ├── vega_5056.vg.json │ │ ├── vega_5057.vg.json │ │ ├── vega_5058.vg.json │ │ ├── vega_5059.vg.json │ │ ├── vega_5060.vg.json │ │ ├── vega_5061.vg.json │ │ ├── vega_5062.vg.json │ │ ├── vega_5063.vg.json │ │ ├── vega_5064.vg.json │ │ ├── vega_5065.vg.json │ │ ├── vega_5066.vg.json │ │ ├── vega_5067.vg.json │ │ ├── vega_5068.vg.json │ │ ├── vega_5069.vg.json │ │ ├── vega_5070.vg.json │ │ ├── vega_5071.vg.json │ │ ├── vega_5072.vg.json │ │ ├── vega_5073.vg.json │ │ ├── vega_5074.vg.json │ │ ├── vega_5075.vg.json │ │ ├── vega_5076.vg.json │ │ ├── vega_5077.vg.json │ │ ├── vega_5078.vg.json │ │ ├── vega_5079.vg.json │ │ ├── vega_5080.vg.json │ │ ├── vega_5081.vg.json │ │ ├── vega_5082.vg.json │ │ ├── vega_5083.vg.json │ │ ├── vega_5084.vg.json │ │ ├── vega_5085.vg.json │ │ ├── vega_5086.vg.json │ │ ├── vega_5087.vg.json │ │ ├── vega_5088.vg.json │ │ ├── vega_5089.vg.json │ │ ├── vega_5090.vg.json │ │ ├── vega_5091.vg.json │ │ ├── vega_5092.vg.json │ │ ├── vega_5093.vg.json │ │ ├── vega_5094.vg.json │ │ ├── vega_5095.vg.json │ │ ├── vega_5096.vg.json │ │ ├── vega_5097.vg.json │ │ ├── vega_5098.vg.json │ │ ├── vega_5099.vg.json │ │ ├── vega_5100.vg.json │ │ ├── vega_5101.vg.json │ │ ├── vega_5102.vg.json │ │ ├── vega_5103.vg.json │ │ ├── vega_5104.vg.json │ │ ├── vega_5105.vg.json │ │ ├── vega_5106.vg.json │ │ ├── vega_5107.vg.json │ │ ├── vega_5108.vg.json │ │ ├── vega_5109.vg.json │ │ ├── vega_5110.vg.json │ │ ├── vega_5111.vg.json │ │ ├── vega_5112.vg.json │ │ ├── vega_5113.vg.json │ │ ├── vega_5114.vg.json │ │ ├── vega_5115.vg.json │ │ ├── vega_5116.vg.json │ │ ├── vega_5117.vg.json │ │ ├── vega_5118.vg.json │ │ ├── vega_5119.vg.json │ │ ├── vega_5120.vg.json │ │ ├── vega_5121.vg.json │ │ ├── vega_5122.vg.json │ │ ├── vega_5123.vg.json │ │ ├── vega_5124.vg.json │ │ ├── vega_5125.vg.json │ │ ├── vega_5126.vg.json │ │ ├── vega_5127.vg.json │ │ ├── vega_5128.vg.json │ │ ├── vega_5129.vg.json │ │ ├── vega_5130.vg.json │ │ ├── vega_5131.vg.json │ │ ├── vega_5132.vg.json │ │ ├── vega_5133.vg.json │ │ ├── vega_5134.vg.json │ │ ├── vega_5135.vg.json │ │ ├── vega_5136.vg.json │ │ ├── vega_5137.vg.json │ │ ├── vega_5138.vg.json │ │ ├── vega_5139.vg.json │ │ ├── vega_5140.vg.json │ │ ├── vega_5141.vg.json │ │ ├── vega_5142.vg.json │ │ ├── vega_5143.vg.json │ │ ├── vega_5144.vg.json │ │ ├── vega_5145.vg.json │ │ ├── vega_5146.vg.json │ │ ├── vega_5147.vg.json │ │ ├── vega_5148.vg.json │ │ ├── vega_5149.vg.json │ │ ├── vega_5150.vg.json │ │ ├── vega_5151.vg.json │ │ ├── vega_5152.vg.json │ │ ├── vega_5153.vg.json │ │ ├── vega_5154.vg.json │ │ ├── vega_5155.vg.json │ │ ├── vega_5156.vg.json │ │ ├── vega_5157.vg.json │ │ ├── vega_5158.vg.json │ │ ├── vega_5159.vg.json │ │ ├── vega_5160.vg.json │ │ ├── vega_5161.vg.json │ │ ├── vega_5162.vg.json │ │ ├── vega_5163.vg.json │ │ ├── vega_5164.vg.json │ │ ├── vega_5165.vg.json │ │ ├── vega_5166.vg.json │ │ ├── vega_5167.vg.json │ │ ├── vega_5168.vg.json │ │ ├── vega_5169.vg.json │ │ ├── vega_5170.vg.json │ │ ├── vega_5171.vg.json │ │ ├── vega_5172.vg.json │ │ ├── vega_5173.vg.json │ │ ├── vega_5174.vg.json │ │ ├── vega_5175.vg.json │ │ ├── vega_5176.vg.json │ │ ├── vega_5177.vg.json │ │ ├── vega_5178.vg.json │ │ ├── vega_5179.vg.json │ │ ├── vega_5180.vg.json │ │ ├── vega_5181.vg.json │ │ ├── vega_5182.vg.json │ │ ├── vega_5183.vg.json │ │ ├── vega_5184.vg.json │ │ ├── vega_5185.vg.json │ │ ├── vega_5186.vg.json │ │ ├── vega_5187.vg.json │ │ ├── vega_5188.vg.json │ │ ├── vega_5189.vg.json │ │ ├── vega_5190.vg.json │ │ ├── vega_5191.vg.json │ │ ├── vega_5192.vg.json │ │ ├── vega_5193.vg.json │ │ ├── vega_5194.vg.json │ │ ├── vega_5195.vg.json │ │ ├── vega_5196.vg.json │ │ ├── vega_5197.vg.json │ │ ├── vega_5198.vg.json │ │ ├── vega_5199.vg.json │ │ ├── vega_5200.vg.json │ │ ├── vega_5201.vg.json │ │ ├── vega_5202.vg.json │ │ ├── vega_5203.vg.json │ │ ├── vega_5204.vg.json │ │ ├── vega_5205.vg.json │ │ ├── vega_5206.vg.json │ │ ├── vega_5207.vg.json │ │ ├── vega_5208.vg.json │ │ ├── vega_5209.vg.json │ │ ├── vega_5210.vg.json │ │ ├── vega_5211.vg.json │ │ ├── vega_5212.vg.json │ │ ├── vega_5213.vg.json │ │ ├── vega_5214.vg.json │ │ ├── vega_5215.vg.json │ │ ├── vega_5216.vg.json │ │ ├── vega_5217.vg.json │ │ ├── vega_5218.vg.json │ │ ├── vega_5219.vg.json │ │ ├── vega_5220.vg.json │ │ ├── vega_5221.vg.json │ │ ├── vega_5222.vg.json │ │ ├── vega_5223.vg.json │ │ ├── vega_5224.vg.json │ │ ├── vega_5225.vg.json │ │ ├── vega_5226.vg.json │ │ ├── vega_5227.vg.json │ │ ├── vega_5228.vg.json │ │ ├── vega_5229.vg.json │ │ ├── vega_5230.vg.json │ │ ├── vega_5231.vg.json │ │ ├── vega_5232.vg.json │ │ ├── vega_5233.vg.json │ │ ├── vega_5234.vg.json │ │ ├── vega_5235.vg.json │ │ ├── vega_5236.vg.json │ │ ├── vega_5237.vg.json │ │ ├── vega_5238.vg.json │ │ ├── vega_5239.vg.json │ │ ├── vega_5240.vg.json │ │ ├── vega_5241.vg.json │ │ ├── vega_5242.vg.json │ │ ├── vega_5243.vg.json │ │ ├── vega_5244.vg.json │ │ ├── vega_5245.vg.json │ │ ├── vega_5246.vg.json │ │ ├── vega_5247.vg.json │ │ ├── vega_5248.vg.json │ │ ├── vega_5249.vg.json │ │ ├── vega_5250.vg.json │ │ ├── vega_5251.vg.json │ │ ├── vega_5252.vg.json │ │ ├── vega_5253.vg.json │ │ ├── vega_5254.vg.json │ │ ├── vega_5255.vg.json │ │ ├── vega_5256.vg.json │ │ ├── vega_5257.vg.json │ │ ├── vega_5258.vg.json │ │ ├── vega_5259.vg.json │ │ ├── vega_5260.vg.json │ │ ├── vega_5261.vg.json │ │ ├── vega_5262.vg.json │ │ ├── vega_5263.vg.json │ │ ├── vega_5264.vg.json │ │ ├── vega_5265.vg.json │ │ ├── vega_5266.vg.json │ │ ├── vega_5267.vg.json │ │ ├── vega_5268.vg.json │ │ ├── vega_5269.vg.json │ │ ├── vega_5270.vg.json │ │ ├── vega_5271.vg.json │ │ ├── vega_5272.vg.json │ │ ├── vega_5273.vg.json │ │ ├── vega_5274.vg.json │ │ ├── vega_5275.vg.json │ │ ├── vega_5276.vg.json │ │ ├── vega_5277.vg.json │ │ ├── vega_5278.vg.json │ │ ├── vega_5279.vg.json │ │ ├── vega_5280.vg.json │ │ ├── vega_5281.vg.json │ │ ├── vega_5282.vg.json │ │ ├── vega_5283.vg.json │ │ ├── vega_5284.vg.json │ │ ├── vega_5285.vg.json │ │ ├── vega_5286.vg.json │ │ ├── vega_5287.vg.json │ │ ├── vega_5288.vg.json │ │ ├── vega_5289.vg.json │ │ ├── vega_5290.vg.json │ │ ├── vega_5291.vg.json │ │ ├── vega_5292.vg.json │ │ ├── vega_5293.vg.json │ │ ├── vega_5294.vg.json │ │ ├── vega_5295.vg.json │ │ ├── vega_5296.vg.json │ │ ├── vega_5297.vg.json │ │ ├── vega_5298.vg.json │ │ ├── vega_5299.vg.json │ │ ├── vega_5300.vg.json │ │ ├── vega_5301.vg.json │ │ ├── vega_5302.vg.json │ │ ├── vega_5303.vg.json │ │ ├── vega_5304.vg.json │ │ ├── vega_5305.vg.json │ │ ├── vega_5306.vg.json │ │ ├── vega_5307.vg.json │ │ ├── vega_5308.vg.json │ │ ├── vega_5309.vg.json │ │ ├── vega_5310.vg.json │ │ ├── vega_5311.vg.json │ │ ├── vega_5312.vg.json │ │ ├── vega_5313.vg.json │ │ ├── vega_5314.vg.json │ │ ├── vega_5315.vg.json │ │ ├── vega_5316.vg.json │ │ ├── vega_5317.vg.json │ │ ├── vega_5318.vg.json │ │ ├── vega_5319.vg.json │ │ ├── vega_5320.vg.json │ │ ├── vega_5321.vg.json │ │ ├── vega_5322.vg.json │ │ ├── vega_5323.vg.json │ │ ├── vega_5324.vg.json │ │ ├── vega_5325.vg.json │ │ ├── vega_5326.vg.json │ │ ├── vega_5327.vg.json │ │ ├── vega_5328.vg.json │ │ ├── vega_5329.vg.json │ │ ├── vega_5330.vg.json │ │ ├── vega_5331.vg.json │ │ ├── vega_5332.vg.json │ │ ├── vega_5333.vg.json │ │ ├── vega_5334.vg.json │ │ ├── vega_5335.vg.json │ │ ├── vega_5336.vg.json │ │ ├── vega_5337.vg.json │ │ ├── vega_5338.vg.json │ │ ├── vega_5339.vg.json │ │ ├── vega_5340.vg.json │ │ ├── vega_5341.vg.json │ │ ├── vega_5342.vg.json │ │ ├── vega_5343.vg.json │ │ ├── vega_5344.vg.json │ │ ├── vega_5345.vg.json │ │ ├── vega_5346.vg.json │ │ ├── vega_5347.vg.json │ │ ├── vega_5348.vg.json │ │ ├── vega_5349.vg.json │ │ ├── vega_5350.vg.json │ │ ├── vega_5351.vg.json │ │ ├── vega_5352.vg.json │ │ ├── vega_5353.vg.json │ │ ├── vega_5354.vg.json │ │ ├── vega_5355.vg.json │ │ ├── vega_5356.vg.json │ │ ├── vega_5357.vg.json │ │ ├── vega_5358.vg.json │ │ ├── vega_5359.vg.json │ │ ├── vega_5360.vg.json │ │ ├── vega_5361.vg.json │ │ ├── vega_5362.vg.json │ │ ├── vega_5363.vg.json │ │ ├── vega_5364.vg.json │ │ ├── vega_5365.vg.json │ │ ├── vega_5366.vg.json │ │ ├── vega_5367.vg.json │ │ ├── vega_5368.vg.json │ │ ├── vega_5369.vg.json │ │ ├── vega_5370.vg.json │ │ ├── vega_5371.vg.json │ │ ├── vega_5372.vg.json │ │ ├── vega_5373.vg.json │ │ ├── vega_5374.vg.json │ │ ├── vega_5375.vg.json │ │ ├── vega_5376.vg.json │ │ ├── vega_5377.vg.json │ │ ├── vega_5378.vg.json │ │ ├── vega_5379.vg.json │ │ ├── vega_5380.vg.json │ │ ├── vega_5381.vg.json │ │ ├── vega_5382.vg.json │ │ ├── vega_5383.vg.json │ │ ├── vega_5384.vg.json │ │ ├── vega_5385.vg.json │ │ ├── vega_5386.vg.json │ │ ├── vega_5387.vg.json │ │ ├── vega_5388.vg.json │ │ ├── vega_5389.vg.json │ │ ├── vega_5390.vg.json │ │ ├── vega_5391.vg.json │ │ ├── vega_5392.vg.json │ │ ├── vega_5393.vg.json │ │ ├── vega_5394.vg.json │ │ ├── vega_5395.vg.json │ │ ├── vega_5396.vg.json │ │ ├── vega_5397.vg.json │ │ ├── vega_5398.vg.json │ │ ├── vega_5399.vg.json │ │ ├── vega_5400.vg.json │ │ ├── vega_5401.vg.json │ │ ├── vega_5402.vg.json │ │ ├── vega_5403.vg.json │ │ ├── vega_5404.vg.json │ │ ├── vega_5405.vg.json │ │ ├── vega_5406.vg.json │ │ ├── vega_5407.vg.json │ │ ├── vega_5408.vg.json │ │ ├── vega_5409.vg.json │ │ ├── vega_5410.vg.json │ │ ├── vega_5411.vg.json │ │ ├── vega_5412.vg.json │ │ ├── vega_5413.vg.json │ │ ├── vega_5414.vg.json │ │ ├── vega_5415.vg.json │ │ ├── vega_5416.vg.json │ │ ├── vega_5417.vg.json │ │ ├── vega_5418.vg.json │ │ ├── vega_5419.vg.json │ │ ├── vega_5420.vg.json │ │ ├── vega_5421.vg.json │ │ ├── vega_5422.vg.json │ │ ├── vega_5423.vg.json │ │ ├── vega_5424.vg.json │ │ ├── vega_5425.vg.json │ │ ├── vega_5426.vg.json │ │ ├── vega_5427.vg.json │ │ ├── vega_5428.vg.json │ │ ├── vega_5429.vg.json │ │ ├── vega_5430.vg.json │ │ ├── vega_5431.vg.json │ │ ├── vega_5432.vg.json │ │ ├── vega_5433.vg.json │ │ ├── vega_5434.vg.json │ │ ├── vega_5435.vg.json │ │ ├── vega_5436.vg.json │ │ ├── vega_5437.vg.json │ │ ├── vega_5438.vg.json │ │ ├── vega_5439.vg.json │ │ ├── vega_5440.vg.json │ │ ├── vega_5441.vg.json │ │ ├── vega_5442.vg.json │ │ ├── vega_5443.vg.json │ │ ├── vega_5444.vg.json │ │ ├── vega_5445.vg.json │ │ ├── vega_5446.vg.json │ │ ├── vega_5447.vg.json │ │ ├── vega_5448.vg.json │ │ ├── vega_5449.vg.json │ │ ├── vega_5450.vg.json │ │ ├── vega_5451.vg.json │ │ ├── vega_5452.vg.json │ │ ├── vega_5453.vg.json │ │ ├── vega_5454.vg.json │ │ ├── vega_5455.vg.json │ │ ├── vega_5456.vg.json │ │ ├── vega_5457.vg.json │ │ ├── vega_5458.vg.json │ │ ├── vega_5459.vg.json │ │ ├── vega_5460.vg.json │ │ ├── vega_5461.vg.json │ │ ├── vega_5462.vg.json │ │ ├── vega_5463.vg.json │ │ ├── vega_5464.vg.json │ │ ├── vega_5465.vg.json │ │ ├── vega_5466.vg.json │ │ ├── vega_5467.vg.json │ │ ├── vega_5468.vg.json │ │ ├── vega_5469.vg.json │ │ ├── vega_5470.vg.json │ │ ├── vega_5471.vg.json │ │ ├── vega_5472.vg.json │ │ ├── vega_5473.vg.json │ │ ├── vega_5474.vg.json │ │ ├── vega_5475.vg.json │ │ ├── vega_5476.vg.json │ │ ├── vega_5477.vg.json │ │ ├── vega_5478.vg.json │ │ ├── vega_5479.vg.json │ │ ├── vega_5480.vg.json │ │ ├── vega_5481.vg.json │ │ ├── vega_5482.vg.json │ │ ├── vega_5483.vg.json │ │ ├── vega_5484.vg.json │ │ ├── vega_5485.vg.json │ │ ├── vega_5486.vg.json │ │ ├── vega_5487.vg.json │ │ ├── vega_5488.vg.json │ │ ├── vega_5489.vg.json │ │ ├── vega_5490.vg.json │ │ ├── vega_5491.vg.json │ │ ├── vega_5492.vg.json │ │ ├── vega_5493.vg.json │ │ ├── vega_5494.vg.json │ │ ├── vega_5495.vg.json │ │ ├── vega_5496.vg.json │ │ ├── vega_5497.vg.json │ │ ├── vega_5498.vg.json │ │ ├── vega_5499.vg.json │ │ ├── vega_5500.vg.json │ │ ├── vega_5501.vg.json │ │ ├── vega_5502.vg.json │ │ ├── vega_5503.vg.json │ │ ├── vega_5504.vg.json │ │ ├── vega_5505.vg.json │ │ ├── vega_5506.vg.json │ │ ├── vega_5507.vg.json │ │ ├── vega_5508.vg.json │ │ ├── vega_5509.vg.json │ │ ├── vega_5510.vg.json │ │ ├── vega_5511.vg.json │ │ ├── vega_5512.vg.json │ │ ├── vega_5513.vg.json │ │ ├── vega_5514.vg.json │ │ ├── vega_5515.vg.json │ │ ├── vega_5516.vg.json │ │ ├── vega_5517.vg.json │ │ ├── vega_5518.vg.json │ │ ├── vega_5519.vg.json │ │ ├── vega_5520.vg.json │ │ ├── vega_5521.vg.json │ │ ├── vega_5522.vg.json │ │ ├── vega_5523.vg.json │ │ ├── vega_5524.vg.json │ │ ├── vega_5525.vg.json │ │ ├── vega_5526.vg.json │ │ ├── vega_5527.vg.json │ │ ├── vega_5528.vg.json │ │ ├── vega_5529.vg.json │ │ ├── vega_5530.vg.json │ │ ├── vega_5531.vg.json │ │ ├── vega_5532.vg.json │ │ ├── vega_5533.vg.json │ │ ├── vega_5534.vg.json │ │ ├── vega_5535.vg.json │ │ ├── vega_5536.vg.json │ │ ├── vega_5537.vg.json │ │ ├── vega_5538.vg.json │ │ ├── vega_5539.vg.json │ │ ├── vega_5540.vg.json │ │ ├── vega_5541.vg.json │ │ ├── vega_5542.vg.json │ │ ├── vega_5543.vg.json │ │ ├── vega_5544.vg.json │ │ ├── vega_5545.vg.json │ │ ├── vega_5546.vg.json │ │ ├── vega_5547.vg.json │ │ ├── vega_5548.vg.json │ │ ├── vega_5549.vg.json │ │ ├── vega_5550.vg.json │ │ ├── vega_5551.vg.json │ │ ├── vega_5552.vg.json │ │ ├── vega_5553.vg.json │ │ ├── vega_5554.vg.json │ │ ├── vega_5555.vg.json │ │ ├── vega_5556.vg.json │ │ ├── vega_5557.vg.json │ │ ├── vega_5558.vg.json │ │ ├── vega_5559.vg.json │ │ ├── vega_5560.vg.json │ │ ├── vega_5561.vg.json │ │ ├── vega_5562.vg.json │ │ ├── vega_5563.vg.json │ │ ├── vega_5564.vg.json │ │ ├── vega_5565.vg.json │ │ ├── vega_5566.vg.json │ │ ├── vega_5567.vg.json │ │ ├── vega_5568.vg.json │ │ ├── vega_5569.vg.json │ │ ├── vega_5570.vg.json │ │ ├── vega_5571.vg.json │ │ ├── vega_5572.vg.json │ │ ├── vega_5573.vg.json │ │ ├── vega_5574.vg.json │ │ ├── vega_5575.vg.json │ │ ├── vega_5576.vg.json │ │ ├── vega_5577.vg.json │ │ ├── vega_5578.vg.json │ │ ├── vega_5579.vg.json │ │ ├── vega_5580.vg.json │ │ ├── vega_5581.vg.json │ │ ├── vega_5582.vg.json │ │ ├── vega_5583.vg.json │ │ ├── vega_5584.vg.json │ │ ├── vega_5585.vg.json │ │ ├── vega_5586.vg.json │ │ ├── vega_5587.vg.json │ │ ├── vega_5588.vg.json │ │ ├── vega_5589.vg.json │ │ ├── vega_5590.vg.json │ │ ├── vega_5591.vg.json │ │ ├── vega_5592.vg.json │ │ ├── vega_5593.vg.json │ │ ├── vega_5594.vg.json │ │ ├── vega_5595.vg.json │ │ ├── vega_5596.vg.json │ │ ├── vega_5597.vg.json │ │ ├── vega_5598.vg.json │ │ ├── vega_5599.vg.json │ │ ├── vega_5600.vg.json │ │ ├── vega_5601.vg.json │ │ ├── vega_5602.vg.json │ │ ├── vega_5603.vg.json │ │ ├── vega_5604.vg.json │ │ ├── vega_5605.vg.json │ │ ├── vega_5606.vg.json │ │ ├── vega_5607.vg.json │ │ ├── vega_5608.vg.json │ │ ├── vega_5609.vg.json │ │ ├── vega_5610.vg.json │ │ ├── vega_5611.vg.json │ │ ├── vega_5612.vg.json │ │ ├── vega_5613.vg.json │ │ ├── vega_5614.vg.json │ │ ├── vega_5615.vg.json │ │ ├── vega_5616.vg.json │ │ ├── vega_5617.vg.json │ │ ├── vega_5618.vg.json │ │ ├── vega_5619.vg.json │ │ ├── vega_5620.vg.json │ │ ├── vega_5621.vg.json │ │ ├── vega_5622.vg.json │ │ ├── vega_5623.vg.json │ │ ├── vega_5624.vg.json │ │ ├── vega_5625.vg.json │ │ ├── vega_5626.vg.json │ │ ├── vega_5627.vg.json │ │ ├── vega_5628.vg.json │ │ ├── vega_5629.vg.json │ │ ├── vega_5630.vg.json │ │ ├── vega_5631.vg.json │ │ ├── vega_5632.vg.json │ │ ├── vega_5633.vg.json │ │ ├── vega_5634.vg.json │ │ ├── vega_5635.vg.json │ │ ├── vega_5636.vg.json │ │ ├── vega_5637.vg.json │ │ ├── vega_5638.vg.json │ │ ├── vega_5639.vg.json │ │ ├── vega_5640.vg.json │ │ ├── vega_5641.vg.json │ │ ├── vega_5642.vg.json │ │ ├── vega_5643.vg.json │ │ ├── vega_5644.vg.json │ │ ├── vega_5645.vg.json │ │ ├── vega_5646.vg.json │ │ ├── vega_5647.vg.json │ │ ├── vega_5648.vg.json │ │ ├── vega_5649.vg.json │ │ ├── vega_5650.vg.json │ │ ├── vega_5651.vg.json │ │ ├── vega_5652.vg.json │ │ ├── vega_5653.vg.json │ │ ├── vega_5654.vg.json │ │ ├── vega_5655.vg.json │ │ ├── vega_5656.vg.json │ │ ├── vega_5657.vg.json │ │ ├── vega_5658.vg.json │ │ ├── vega_5659.vg.json │ │ ├── vega_5660.vg.json │ │ ├── vega_5661.vg.json │ │ ├── vega_5662.vg.json │ │ ├── vega_5663.vg.json │ │ ├── vega_5664.vg.json │ │ ├── vega_5665.vg.json │ │ ├── vega_5666.vg.json │ │ ├── vega_5667.vg.json │ │ ├── vega_5668.vg.json │ │ ├── vega_5669.vg.json │ │ ├── vega_5670.vg.json │ │ ├── vega_5671.vg.json │ │ ├── vega_5672.vg.json │ │ ├── vega_5673.vg.json │ │ ├── vega_5674.vg.json │ │ ├── vega_5675.vg.json │ │ ├── vega_5676.vg.json │ │ ├── vega_5677.vg.json │ │ ├── vega_5678.vg.json │ │ ├── vega_5679.vg.json │ │ ├── vega_5680.vg.json │ │ ├── vega_5681.vg.json │ │ ├── vega_5682.vg.json │ │ ├── vega_5683.vg.json │ │ ├── vega_5684.vg.json │ │ ├── vega_5685.vg.json │ │ ├── vega_5686.vg.json │ │ ├── vega_5687.vg.json │ │ ├── vega_5688.vg.json │ │ ├── vega_5689.vg.json │ │ ├── vega_5690.vg.json │ │ ├── vega_5691.vg.json │ │ ├── vega_5692.vg.json │ │ ├── vega_5693.vg.json │ │ ├── vega_5694.vg.json │ │ ├── vega_5695.vg.json │ │ ├── vega_5696.vg.json │ │ ├── vega_5697.vg.json │ │ ├── vega_5698.vg.json │ │ ├── vega_5699.vg.json │ │ ├── vega_5700.vg.json │ │ ├── vega_5701.vg.json │ │ ├── vega_5702.vg.json │ │ ├── vega_5703.vg.json │ │ ├── vega_5704.vg.json │ │ ├── vega_5705.vg.json │ │ ├── vega_5706.vg.json │ │ ├── vega_5707.vg.json │ │ ├── vega_5708.vg.json │ │ ├── vega_5709.vg.json │ │ ├── vega_5710.vg.json │ │ ├── vega_5711.vg.json │ │ ├── vega_5712.vg.json │ │ ├── vega_5713.vg.json │ │ ├── vega_5714.vg.json │ │ ├── vega_5715.vg.json │ │ ├── vega_5716.vg.json │ │ ├── vega_5717.vg.json │ │ ├── vega_5718.vg.json │ │ ├── vega_5719.vg.json │ │ ├── vega_5720.vg.json │ │ ├── vega_5721.vg.json │ │ ├── vega_5722.vg.json │ │ ├── vega_5723.vg.json │ │ ├── vega_5724.vg.json │ │ ├── vega_5725.vg.json │ │ ├── vega_5726.vg.json │ │ ├── vega_5727.vg.json │ │ ├── vega_5728.vg.json │ │ ├── vega_5729.vg.json │ │ ├── vega_5730.vg.json │ │ ├── vega_5731.vg.json │ │ ├── vega_5732.vg.json │ │ ├── vega_5733.vg.json │ │ ├── vega_5734.vg.json │ │ ├── vega_5735.vg.json │ │ ├── vega_5736.vg.json │ │ ├── vega_5737.vg.json │ │ ├── vega_5738.vg.json │ │ ├── vega_5739.vg.json │ │ ├── vega_5740.vg.json │ │ ├── vega_5741.vg.json │ │ ├── vega_5742.vg.json │ │ ├── vega_5743.vg.json │ │ ├── vega_5744.vg.json │ │ ├── vega_5745.vg.json │ │ ├── vega_5746.vg.json │ │ ├── vega_5747.vg.json │ │ ├── vega_5748.vg.json │ │ ├── vega_5749.vg.json │ │ ├── vega_5750.vg.json │ │ ├── vega_5751.vg.json │ │ ├── vega_5752.vg.json │ │ ├── vega_5753.vg.json │ │ ├── vega_5754.vg.json │ │ ├── vega_5755.vg.json │ │ ├── vega_5756.vg.json │ │ ├── vega_5757.vg.json │ │ ├── vega_5758.vg.json │ │ ├── vega_5759.vg.json │ │ ├── vega_5760.vg.json │ │ ├── vega_5761.vg.json │ │ ├── vega_5762.vg.json │ │ ├── vega_5763.vg.json │ │ ├── vega_5764.vg.json │ │ ├── vega_5765.vg.json │ │ ├── vega_5766.vg.json │ │ ├── vega_5767.vg.json │ │ ├── vega_5768.vg.json │ │ ├── vega_5769.vg.json │ │ ├── vega_5770.vg.json │ │ ├── vega_5771.vg.json │ │ ├── vega_5772.vg.json │ │ ├── vega_5773.vg.json │ │ ├── vega_5774.vg.json │ │ ├── vega_5775.vg.json │ │ ├── vega_5776.vg.json │ │ ├── vega_5777.vg.json │ │ ├── vega_5778.vg.json │ │ ├── vega_5779.vg.json │ │ ├── vega_5780.vg.json │ │ ├── vega_5781.vg.json │ │ ├── vega_5782.vg.json │ │ ├── vega_5783.vg.json │ │ ├── vega_5784.vg.json │ │ ├── vega_5785.vg.json │ │ ├── vega_5786.vg.json │ │ ├── vega_5787.vg.json │ │ ├── vega_5788.vg.json │ │ ├── vega_5789.vg.json │ │ ├── vega_5790.vg.json │ │ ├── vega_5791.vg.json │ │ ├── vega_5792.vg.json │ │ ├── vega_5793.vg.json │ │ ├── vega_5794.vg.json │ │ ├── vega_5795.vg.json │ │ ├── vega_5796.vg.json │ │ ├── vega_5797.vg.json │ │ ├── vega_5798.vg.json │ │ ├── vega_5799.vg.json │ │ ├── vega_5800.vg.json │ │ ├── vega_5801.vg.json │ │ ├── vega_5802.vg.json │ │ ├── vega_5803.vg.json │ │ ├── vega_5804.vg.json │ │ ├── vega_5805.vg.json │ │ ├── vega_5806.vg.json │ │ ├── vega_5807.vg.json │ │ ├── vega_5808.vg.json │ │ ├── vega_5809.vg.json │ │ ├── vega_5810.vg.json │ │ ├── vega_5811.vg.json │ │ ├── vega_5812.vg.json │ │ ├── vega_5813.vg.json │ │ ├── vega_5814.vg.json │ │ ├── vega_5815.vg.json │ │ ├── vega_5816.vg.json │ │ ├── vega_5817.vg.json │ │ ├── vega_5818.vg.json │ │ ├── vega_5819.vg.json │ │ ├── vega_5820.vg.json │ │ ├── vega_5821.vg.json │ │ ├── vega_5822.vg.json │ │ ├── vega_5823.vg.json │ │ ├── vega_5824.vg.json │ │ ├── vega_5825.vg.json │ │ ├── vega_5826.vg.json │ │ ├── vega_5827.vg.json │ │ ├── vega_5828.vg.json │ │ ├── vega_5829.vg.json │ │ ├── vega_5830.vg.json │ │ ├── vega_5831.vg.json │ │ ├── vega_5832.vg.json │ │ ├── vega_5833.vg.json │ │ ├── vega_5834.vg.json │ │ ├── vega_5835.vg.json │ │ ├── vega_5836.vg.json │ │ ├── vega_5837.vg.json │ │ ├── vega_5838.vg.json │ │ ├── vega_5839.vg.json │ │ ├── vega_5840.vg.json │ │ ├── vega_5841.vg.json │ │ ├── vega_5842.vg.json │ │ ├── vega_5843.vg.json │ │ ├── vega_5844.vg.json │ │ ├── vega_5845.vg.json │ │ ├── vega_5846.vg.json │ │ ├── vega_5847.vg.json │ │ ├── vega_5848.vg.json │ │ ├── vega_5849.vg.json │ │ ├── vega_5850.vg.json │ │ ├── vega_5851.vg.json │ │ ├── vega_5852.vg.json │ │ ├── vega_5853.vg.json │ │ ├── vega_5854.vg.json │ │ ├── vega_5855.vg.json │ │ ├── vega_5856.vg.json │ │ ├── vega_5857.vg.json │ │ ├── vega_5858.vg.json │ │ ├── vega_5859.vg.json │ │ ├── vega_5860.vg.json │ │ ├── vega_5861.vg.json │ │ ├── vega_5862.vg.json │ │ ├── vega_5863.vg.json │ │ ├── vega_5864.vg.json │ │ ├── vega_5865.vg.json │ │ ├── vega_5866.vg.json │ │ ├── vega_5867.vg.json │ │ ├── vega_5868.vg.json │ │ ├── vega_5869.vg.json │ │ ├── vega_5870.vg.json │ │ ├── vega_5871.vg.json │ │ ├── vega_5872.vg.json │ │ ├── vega_5873.vg.json │ │ ├── vega_5874.vg.json │ │ ├── vega_5875.vg.json │ │ ├── vega_5876.vg.json │ │ ├── vega_5877.vg.json │ │ ├── vega_5878.vg.json │ │ ├── vega_5879.vg.json │ │ ├── vega_5880.vg.json │ │ ├── vega_5881.vg.json │ │ ├── vega_5882.vg.json │ │ ├── vega_5883.vg.json │ │ ├── vega_5884.vg.json │ │ ├── vega_5885.vg.json │ │ ├── vega_5886.vg.json │ │ ├── vega_5887.vg.json │ │ ├── vega_5888.vg.json │ │ ├── vega_5889.vg.json │ │ ├── vega_5890.vg.json │ │ ├── vega_5891.vg.json │ │ ├── vega_5892.vg.json │ │ ├── vega_5893.vg.json │ │ ├── vega_5894.vg.json │ │ ├── vega_5895.vg.json │ │ ├── vega_5896.vg.json │ │ ├── vega_5897.vg.json │ │ ├── vega_5898.vg.json │ │ ├── vega_5899.vg.json │ │ ├── vega_5900.vg.json │ │ ├── vega_5901.vg.json │ │ ├── vega_5902.vg.json │ │ ├── vega_5903.vg.json │ │ ├── vega_5904.vg.json │ │ ├── vega_5905.vg.json │ │ ├── vega_5906.vg.json │ │ ├── vega_5907.vg.json │ │ ├── vega_5908.vg.json │ │ ├── vega_5909.vg.json │ │ ├── vega_5910.vg.json │ │ ├── vega_5911.vg.json │ │ ├── vega_5912.vg.json │ │ ├── vega_5913.vg.json │ │ ├── vega_5914.vg.json │ │ ├── vega_5915.vg.json │ │ ├── vega_5916.vg.json │ │ ├── vega_5917.vg.json │ │ ├── vega_5918.vg.json │ │ ├── vega_5919.vg.json │ │ ├── vega_5920.vg.json │ │ ├── vega_5921.vg.json │ │ ├── vega_5922.vg.json │ │ ├── vega_5923.vg.json │ │ ├── vega_5924.vg.json │ │ ├── vega_5925.vg.json │ │ ├── vega_5926.vg.json │ │ ├── vega_5927.vg.json │ │ ├── vega_5928.vg.json │ │ ├── vega_5929.vg.json │ │ ├── vega_5930.vg.json │ │ ├── vega_5931.vg.json │ │ ├── vega_5932.vg.json │ │ ├── vega_5933.vg.json │ │ ├── vega_5934.vg.json │ │ ├── vega_5935.vg.json │ │ ├── vega_5936.vg.json │ │ ├── vega_5937.vg.json │ │ ├── vega_5938.vg.json │ │ ├── vega_5939.vg.json │ │ ├── vega_5940.vg.json │ │ ├── vega_5941.vg.json │ │ ├── vega_5942.vg.json │ │ ├── vega_5943.vg.json │ │ ├── vega_5944.vg.json │ │ ├── vega_5945.vg.json │ │ ├── vega_5946.vg.json │ │ ├── vega_5947.vg.json │ │ ├── vega_5948.vg.json │ │ ├── vega_5949.vg.json │ │ ├── vega_5950.vg.json │ │ ├── vega_5951.vg.json │ │ ├── vega_5952.vg.json │ │ ├── vega_5953.vg.json │ │ ├── vega_5954.vg.json │ │ ├── vega_5955.vg.json │ │ ├── vega_5956.vg.json │ │ ├── vega_5957.vg.json │ │ ├── vega_5958.vg.json │ │ ├── vega_5959.vg.json │ │ ├── vega_5960.vg.json │ │ ├── vega_5961.vg.json │ │ ├── vega_5962.vg.json │ │ ├── vega_5963.vg.json │ │ ├── vega_5964.vg.json │ │ ├── vega_5965.vg.json │ │ ├── vega_5966.vg.json │ │ ├── vega_5967.vg.json │ │ ├── vega_5968.vg.json │ │ ├── vega_5969.vg.json │ │ ├── vega_5970.vg.json │ │ ├── vega_5971.vg.json │ │ ├── vega_5972.vg.json │ │ ├── vega_5973.vg.json │ │ ├── vega_5974.vg.json │ │ ├── vega_5975.vg.json │ │ ├── vega_5976.vg.json │ │ ├── vega_5977.vg.json │ │ ├── vega_5978.vg.json │ │ ├── vega_5979.vg.json │ │ ├── vega_5980.vg.json │ │ ├── vega_5981.vg.json │ │ ├── vega_5982.vg.json │ │ ├── vega_5983.vg.json │ │ ├── vega_5984.vg.json │ │ ├── vega_5985.vg.json │ │ ├── vega_5986.vg.json │ │ ├── vega_5987.vg.json │ │ ├── vega_5988.vg.json │ │ ├── vega_5989.vg.json │ │ ├── vega_5990.vg.json │ │ ├── vega_5991.vg.json │ │ ├── vega_5992.vg.json │ │ ├── vega_5993.vg.json │ │ ├── vega_5994.vg.json │ │ ├── vega_5995.vg.json │ │ ├── vega_5996.vg.json │ │ ├── vega_5997.vg.json │ │ ├── vega_5998.vg.json │ │ ├── vega_5999.vg.json │ │ ├── vega_6000.vg.json │ │ ├── vega_6001.vg.json │ │ ├── vega_6002.vg.json │ │ ├── vega_6003.vg.json │ │ ├── vega_6004.vg.json │ │ ├── vega_6005.vg.json │ │ ├── vega_6006.vg.json │ │ ├── vega_6007.vg.json │ │ ├── vega_6008.vg.json │ │ ├── vega_6009.vg.json │ │ ├── vega_6010.vg.json │ │ ├── vega_6011.vg.json │ │ ├── vega_6012.vg.json │ │ ├── vega_6013.vg.json │ │ ├── vega_6014.vg.json │ │ ├── vega_6015.vg.json │ │ ├── vega_6016.vg.json │ │ ├── vega_6017.vg.json │ │ ├── vega_6018.vg.json │ │ ├── vega_6019.vg.json │ │ ├── vega_6020.vg.json │ │ ├── vega_6021.vg.json │ │ ├── vega_6022.vg.json │ │ ├── vega_6023.vg.json │ │ ├── vega_6024.vg.json │ │ ├── vega_6025.vg.json │ │ ├── vega_6026.vg.json │ │ ├── vega_6027.vg.json │ │ ├── vega_6028.vg.json │ │ ├── vega_6029.vg.json │ │ ├── vega_6030.vg.json │ │ ├── vega_6031.vg.json │ │ ├── vega_6032.vg.json │ │ ├── vega_6033.vg.json │ │ ├── vega_6034.vg.json │ │ ├── vega_6035.vg.json │ │ ├── vega_6036.vg.json │ │ ├── vega_6037.vg.json │ │ ├── vega_6038.vg.json │ │ ├── vega_6039.vg.json │ │ ├── vega_6040.vg.json │ │ ├── vega_6041.vg.json │ │ ├── vega_6042.vg.json │ │ ├── vega_6043.vg.json │ │ ├── vega_6044.vg.json │ │ ├── vega_6045.vg.json │ │ ├── vega_6046.vg.json │ │ ├── vega_6047.vg.json │ │ ├── vega_6048.vg.json │ │ ├── vega_6049.vg.json │ │ ├── vega_6050.vg.json │ │ ├── vega_6051.vg.json │ │ ├── vega_6052.vg.json │ │ ├── vega_6053.vg.json │ │ ├── vega_6054.vg.json │ │ ├── vega_6055.vg.json │ │ ├── vega_6056.vg.json │ │ ├── vega_6057.vg.json │ │ ├── vega_6058.vg.json │ │ ├── vega_6059.vg.json │ │ ├── vega_6060.vg.json │ │ ├── vega_6061.vg.json │ │ ├── vega_6062.vg.json │ │ ├── vega_6063.vg.json │ │ ├── vega_6064.vg.json │ │ ├── vega_6065.vg.json │ │ ├── vega_6066.vg.json │ │ ├── vega_6067.vg.json │ │ ├── vega_6068.vg.json │ │ ├── vega_6069.vg.json │ │ ├── vega_6070.vg.json │ │ ├── vega_6071.vg.json │ │ ├── vega_6072.vg.json │ │ ├── vega_6073.vg.json │ │ ├── vega_6074.vg.json │ │ ├── vega_6075.vg.json │ │ ├── vega_6076.vg.json │ │ ├── vega_6077.vg.json │ │ ├── vega_6078.vg.json │ │ ├── vega_6079.vg.json │ │ ├── vega_6080.vg.json │ │ ├── vega_6081.vg.json │ │ ├── vega_6082.vg.json │ │ ├── vega_6083.vg.json │ │ ├── vega_6084.vg.json │ │ ├── vega_6085.vg.json │ │ ├── vega_6086.vg.json │ │ ├── vega_6087.vg.json │ │ ├── vega_6088.vg.json │ │ ├── vega_6089.vg.json │ │ ├── vega_6090.vg.json │ │ ├── vega_6091.vg.json │ │ ├── vega_6092.vg.json │ │ ├── vega_6093.vg.json │ │ ├── vega_6094.vg.json │ │ ├── vega_6095.vg.json │ │ ├── vega_6096.vg.json │ │ ├── vega_6097.vg.json │ │ ├── vega_6098.vg.json │ │ ├── vega_6099.vg.json │ │ ├── vega_6100.vg.json │ │ ├── vega_6101.vg.json │ │ ├── vega_6102.vg.json │ │ ├── vega_6103.vg.json │ │ ├── vega_6104.vg.json │ │ ├── vega_6105.vg.json │ │ ├── vega_6106.vg.json │ │ ├── vega_6107.vg.json │ │ ├── vega_6108.vg.json │ │ ├── vega_6109.vg.json │ │ ├── vega_6110.vg.json │ │ ├── vega_6111.vg.json │ │ ├── vega_6112.vg.json │ │ ├── vega_6113.vg.json │ │ ├── vega_6114.vg.json │ │ ├── vega_6115.vg.json │ │ ├── vega_6116.vg.json │ │ ├── vega_6117.vg.json │ │ ├── vega_6118.vg.json │ │ ├── vega_6119.vg.json │ │ ├── vega_6120.vg.json │ │ ├── vega_6121.vg.json │ │ ├── vega_6122.vg.json │ │ ├── vega_6123.vg.json │ │ ├── vega_6124.vg.json │ │ ├── vega_6125.vg.json │ │ ├── vega_6126.vg.json │ │ ├── vega_6127.vg.json │ │ ├── vega_6128.vg.json │ │ ├── vega_6129.vg.json │ │ ├── vega_6130.vg.json │ │ ├── vega_6131.vg.json │ │ ├── vega_6132.vg.json │ │ ├── vega_6133.vg.json │ │ ├── vega_6134.vg.json │ │ ├── vega_6135.vg.json │ │ ├── vega_6136.vg.json │ │ ├── vega_6137.vg.json │ │ ├── vega_6138.vg.json │ │ ├── vega_6139.vg.json │ │ ├── vega_6140.vg.json │ │ ├── vega_6141.vg.json │ │ ├── vega_6142.vg.json │ │ ├── vega_6143.vg.json │ │ ├── vega_6144.vg.json │ │ ├── vega_6145.vg.json │ │ ├── vega_6146.vg.json │ │ ├── vega_6147.vg.json │ │ ├── vega_6148.vg.json │ │ ├── vega_6149.vg.json │ │ ├── vega_6150.vg.json │ │ ├── vega_6151.vg.json │ │ ├── vega_6152.vg.json │ │ ├── vega_6153.vg.json │ │ ├── vega_6154.vg.json │ │ ├── vega_6155.vg.json │ │ ├── vega_6156.vg.json │ │ ├── vega_6157.vg.json │ │ ├── vega_6158.vg.json │ │ ├── vega_6159.vg.json │ │ ├── vega_6160.vg.json │ │ ├── vega_6161.vg.json │ │ ├── vega_6162.vg.json │ │ ├── vega_6163.vg.json │ │ ├── vega_6164.vg.json │ │ ├── vega_6165.vg.json │ │ ├── vega_6166.vg.json │ │ ├── vega_6167.vg.json │ │ ├── vega_6168.vg.json │ │ ├── vega_6169.vg.json │ │ ├── vega_6170.vg.json │ │ ├── vega_6171.vg.json │ │ ├── vega_6172.vg.json │ │ ├── vega_6173.vg.json │ │ ├── vega_6174.vg.json │ │ ├── vega_6175.vg.json │ │ ├── vega_6176.vg.json │ │ ├── vega_6177.vg.json │ │ ├── vega_6178.vg.json │ │ ├── vega_6179.vg.json │ │ ├── vega_6180.vg.json │ │ ├── vega_6181.vg.json │ │ ├── vega_6182.vg.json │ │ ├── vega_6183.vg.json │ │ ├── vega_6184.vg.json │ │ ├── vega_6185.vg.json │ │ ├── vega_6186.vg.json │ │ ├── vega_6187.vg.json │ │ ├── vega_6188.vg.json │ │ ├── vega_6189.vg.json │ │ ├── vega_6190.vg.json │ │ ├── vega_6191.vg.json │ │ ├── vega_6192.vg.json │ │ ├── vega_6193.vg.json │ │ ├── vega_6194.vg.json │ │ ├── vega_6195.vg.json │ │ ├── vega_6196.vg.json │ │ ├── vega_6197.vg.json │ │ ├── vega_6198.vg.json │ │ ├── vega_6199.vg.json │ │ ├── vega_6200.vg.json │ │ ├── vega_6201.vg.json │ │ ├── vega_6202.vg.json │ │ ├── vega_6203.vg.json │ │ ├── vega_6204.vg.json │ │ ├── vega_6205.vg.json │ │ ├── vega_6206.vg.json │ │ ├── vega_6207.vg.json │ │ ├── vega_6208.vg.json │ │ ├── vega_6209.vg.json │ │ ├── vega_6210.vg.json │ │ ├── vega_6211.vg.json │ │ ├── vega_6212.vg.json │ │ ├── vega_6213.vg.json │ │ ├── vega_6214.vg.json │ │ ├── vega_6215.vg.json │ │ ├── vega_6216.vg.json │ │ ├── vega_6217.vg.json │ │ ├── vega_6218.vg.json │ │ ├── vega_6219.vg.json │ │ ├── vega_6220.vg.json │ │ ├── vega_6221.vg.json │ │ ├── vega_6222.vg.json │ │ ├── vega_6223.vg.json │ │ ├── vega_6224.vg.json │ │ ├── vega_6225.vg.json │ │ ├── vega_6226.vg.json │ │ ├── vega_6227.vg.json │ │ ├── vega_6228.vg.json │ │ ├── vega_6229.vg.json │ │ ├── vega_6230.vg.json │ │ ├── vega_6231.vg.json │ │ ├── vega_6232.vg.json │ │ ├── vega_6233.vg.json │ │ ├── vega_6234.vg.json │ │ ├── vega_6235.vg.json │ │ ├── vega_6236.vg.json │ │ ├── vega_6237.vg.json │ │ ├── vega_6238.vg.json │ │ ├── vega_6239.vg.json │ │ ├── vega_6240.vg.json │ │ ├── vega_6241.vg.json │ │ ├── vega_6242.vg.json │ │ ├── vega_6243.vg.json │ │ ├── vega_6244.vg.json │ │ ├── vega_6245.vg.json │ │ ├── vega_6246.vg.json │ │ ├── vega_6247.vg.json │ │ ├── vega_6248.vg.json │ │ ├── vega_6249.vg.json │ │ ├── vega_6250.vg.json │ │ ├── vega_6251.vg.json │ │ ├── vega_6252.vg.json │ │ ├── vega_6253.vg.json │ │ ├── vega_6254.vg.json │ │ ├── vega_6255.vg.json │ │ ├── vega_6256.vg.json │ │ ├── vega_6257.vg.json │ │ ├── vega_6258.vg.json │ │ ├── vega_6259.vg.json │ │ ├── vega_6260.vg.json │ │ ├── vega_6261.vg.json │ │ ├── vega_6262.vg.json │ │ ├── vega_6263.vg.json │ │ ├── vega_6264.vg.json │ │ ├── vega_6265.vg.json │ │ ├── vega_6266.vg.json │ │ ├── vega_6267.vg.json │ │ ├── vega_6268.vg.json │ │ ├── vega_6269.vg.json │ │ ├── vega_6270.vg.json │ │ ├── vega_6271.vg.json │ │ ├── vega_6272.vg.json │ │ ├── vega_6273.vg.json │ │ ├── vega_6274.vg.json │ │ ├── vega_6275.vg.json │ │ ├── vega_6276.vg.json │ │ ├── vega_6277.vg.json │ │ ├── vega_6278.vg.json │ │ ├── vega_6279.vg.json │ │ ├── vega_6280.vg.json │ │ ├── vega_6281.vg.json │ │ ├── vega_6282.vg.json │ │ ├── vega_6283.vg.json │ │ ├── vega_6284.vg.json │ │ ├── vega_6285.vg.json │ │ ├── vega_6286.vg.json │ │ ├── vega_6287.vg.json │ │ ├── vega_6288.vg.json │ │ ├── vega_6289.vg.json │ │ ├── vega_6290.vg.json │ │ ├── vega_6291.vg.json │ │ ├── vega_6292.vg.json │ │ ├── vega_6293.vg.json │ │ ├── vega_6294.vg.json │ │ ├── vega_6295.vg.json │ │ ├── vega_6296.vg.json │ │ ├── vega_6297.vg.json │ │ ├── vega_6298.vg.json │ │ ├── vega_6299.vg.json │ │ ├── vega_6300.vg.json │ │ ├── vega_6301.vg.json │ │ ├── vega_6302.vg.json │ │ ├── vega_6303.vg.json │ │ ├── vega_6304.vg.json │ │ ├── vega_6305.vg.json │ │ ├── vega_6306.vg.json │ │ ├── vega_6307.vg.json │ │ ├── vega_6308.vg.json │ │ ├── vega_6309.vg.json │ │ ├── vega_6310.vg.json │ │ ├── vega_6311.vg.json │ │ ├── vega_6312.vg.json │ │ ├── vega_6313.vg.json │ │ ├── vega_6314.vg.json │ │ ├── vega_6315.vg.json │ │ ├── vega_6316.vg.json │ │ ├── vega_6317.vg.json │ │ ├── vega_6318.vg.json │ │ ├── vega_6319.vg.json │ │ ├── vega_6320.vg.json │ │ ├── vega_6321.vg.json │ │ ├── vega_6322.vg.json │ │ ├── vega_6323.vg.json │ │ ├── vega_6324.vg.json │ │ ├── vega_6325.vg.json │ │ ├── vega_6326.vg.json │ │ ├── vega_6327.vg.json │ │ ├── vega_6328.vg.json │ │ ├── vega_6329.vg.json │ │ ├── vega_6330.vg.json │ │ ├── vega_6331.vg.json │ │ ├── vega_6332.vg.json │ │ ├── vega_6333.vg.json │ │ ├── vega_6334.vg.json │ │ ├── vega_6335.vg.json │ │ ├── vega_6336.vg.json │ │ ├── vega_6337.vg.json │ │ ├── vega_6338.vg.json │ │ ├── vega_6339.vg.json │ │ ├── vega_6340.vg.json │ │ ├── vega_6341.vg.json │ │ ├── vega_6342.vg.json │ │ ├── vega_6343.vg.json │ │ ├── vega_6344.vg.json │ │ ├── vega_6345.vg.json │ │ ├── vega_6346.vg.json │ │ ├── vega_6347.vg.json │ │ ├── vega_6348.vg.json │ │ ├── vega_6349.vg.json │ │ ├── vega_6350.vg.json │ │ ├── vega_6351.vg.json │ │ ├── vega_6352.vg.json │ │ ├── vega_6353.vg.json │ │ ├── vega_6354.vg.json │ │ ├── vega_6355.vg.json │ │ ├── vega_6356.vg.json │ │ ├── vega_6357.vg.json │ │ ├── vega_6358.vg.json │ │ ├── vega_6359.vg.json │ │ ├── vega_6360.vg.json │ │ ├── vega_6361.vg.json │ │ ├── vega_6362.vg.json │ │ ├── vega_6363.vg.json │ │ ├── vega_6364.vg.json │ │ ├── vega_6365.vg.json │ │ ├── vega_6366.vg.json │ │ ├── vega_6367.vg.json │ │ ├── vega_6368.vg.json │ │ ├── vega_6369.vg.json │ │ ├── vega_6370.vg.json │ │ ├── vega_6371.vg.json │ │ ├── vega_6372.vg.json │ │ ├── vega_6373.vg.json │ │ ├── vega_6374.vg.json │ │ ├── vega_6375.vg.json │ │ ├── vega_6376.vg.json │ │ ├── vega_6377.vg.json │ │ ├── vega_6378.vg.json │ │ ├── vega_6379.vg.json │ │ ├── vega_6380.vg.json │ │ ├── vega_6381.vg.json │ │ ├── vega_6382.vg.json │ │ ├── vega_6383.vg.json │ │ ├── vega_6384.vg.json │ │ ├── vega_6385.vg.json │ │ ├── vega_6386.vg.json │ │ ├── vega_6387.vg.json │ │ ├── vega_6388.vg.json │ │ ├── vega_6389.vg.json │ │ ├── vega_6390.vg.json │ │ ├── vega_6391.vg.json │ │ ├── vega_6392.vg.json │ │ ├── vega_6393.vg.json │ │ ├── vega_6394.vg.json │ │ ├── vega_6395.vg.json │ │ ├── vega_6396.vg.json │ │ ├── vega_6397.vg.json │ │ ├── vega_6398.vg.json │ │ ├── vega_6399.vg.json │ │ ├── vega_6400.vg.json │ │ ├── vega_6401.vg.json │ │ ├── vega_6402.vg.json │ │ ├── vega_6403.vg.json │ │ ├── vega_6404.vg.json │ │ ├── vega_6405.vg.json │ │ ├── vega_6406.vg.json │ │ ├── vega_6407.vg.json │ │ ├── vega_6408.vg.json │ │ ├── vega_6409.vg.json │ │ ├── vega_6410.vg.json │ │ ├── vega_6411.vg.json │ │ ├── vega_6412.vg.json │ │ ├── vega_6413.vg.json │ │ ├── vega_6414.vg.json │ │ ├── vega_6415.vg.json │ │ ├── vega_6416.vg.json │ │ ├── vega_6417.vg.json │ │ ├── vega_6418.vg.json │ │ ├── vega_6419.vg.json │ │ ├── vega_6420.vg.json │ │ ├── vega_6421.vg.json │ │ ├── vega_6422.vg.json │ │ ├── vega_6423.vg.json │ │ ├── vega_6424.vg.json │ │ ├── vega_6425.vg.json │ │ ├── vega_6426.vg.json │ │ ├── vega_6427.vg.json │ │ ├── vega_6428.vg.json │ │ ├── vega_6429.vg.json │ │ ├── vega_6430.vg.json │ │ ├── vega_6431.vg.json │ │ ├── vega_6432.vg.json │ │ ├── vega_6433.vg.json │ │ ├── vega_6434.vg.json │ │ ├── vega_6435.vg.json │ │ ├── vega_6436.vg.json │ │ ├── vega_6437.vg.json │ │ ├── vega_6438.vg.json │ │ ├── vega_6439.vg.json │ │ ├── vega_6440.vg.json │ │ ├── vega_6441.vg.json │ │ ├── vega_6442.vg.json │ │ ├── vega_6443.vg.json │ │ ├── vega_6444.vg.json │ │ ├── vega_6445.vg.json │ │ ├── vega_6446.vg.json │ │ ├── vega_6447.vg.json │ │ ├── vega_6448.vg.json │ │ ├── vega_6449.vg.json │ │ ├── vega_6450.vg.json │ │ ├── vega_6451.vg.json │ │ ├── vega_6452.vg.json │ │ ├── vega_6453.vg.json │ │ ├── vega_6454.vg.json │ │ ├── vega_6455.vg.json │ │ ├── vega_6456.vg.json │ │ ├── vega_6457.vg.json │ │ ├── vega_6458.vg.json │ │ ├── vega_6459.vg.json │ │ ├── vega_6460.vg.json │ │ ├── vega_6461.vg.json │ │ ├── vega_6462.vg.json │ │ ├── vega_6463.vg.json │ │ ├── vega_6464.vg.json │ │ ├── vega_6465.vg.json │ │ ├── vega_6466.vg.json │ │ ├── vega_6467.vg.json │ │ ├── vega_6468.vg.json │ │ ├── vega_6469.vg.json │ │ ├── vega_6470.vg.json │ │ ├── vega_6471.vg.json │ │ ├── vega_6472.vg.json │ │ ├── vega_6473.vg.json │ │ ├── vega_6474.vg.json │ │ ├── vega_6475.vg.json │ │ ├── vega_6476.vg.json │ │ ├── vega_6477.vg.json │ │ ├── vega_6478.vg.json │ │ ├── vega_6479.vg.json │ │ ├── vega_6480.vg.json │ │ ├── vega_6481.vg.json │ │ ├── vega_6482.vg.json │ │ ├── vega_6483.vg.json │ │ ├── vega_6484.vg.json │ │ ├── vega_6485.vg.json │ │ ├── vega_6486.vg.json │ │ ├── vega_6487.vg.json │ │ ├── vega_6488.vg.json │ │ ├── vega_6489.vg.json │ │ ├── vega_6490.vg.json │ │ ├── vega_6491.vg.json │ │ ├── vega_6492.vg.json │ │ ├── vega_6493.vg.json │ │ ├── vega_6494.vg.json │ │ ├── vega_6495.vg.json │ │ ├── vega_6496.vg.json │ │ ├── vega_6497.vg.json │ │ ├── vega_6498.vg.json │ │ ├── vega_6499.vg.json │ │ ├── vega_6500.vg.json │ │ ├── vega_6501.vg.json │ │ ├── vega_6502.vg.json │ │ ├── vega_6503.vg.json │ │ ├── vega_6504.vg.json │ │ ├── vega_6505.vg.json │ │ ├── vega_6506.vg.json │ │ ├── vega_6507.vg.json │ │ ├── vega_6508.vg.json │ │ ├── vega_6509.vg.json │ │ ├── vega_6510.vg.json │ │ ├── vega_6511.vg.json │ │ ├── vega_6512.vg.json │ │ ├── vega_6513.vg.json │ │ ├── vega_6514.vg.json │ │ ├── vega_6515.vg.json │ │ ├── vega_6516.vg.json │ │ ├── vega_6517.vg.json │ │ ├── vega_6518.vg.json │ │ ├── vega_6519.vg.json │ │ ├── vega_6520.vg.json │ │ ├── vega_6521.vg.json │ │ ├── vega_6522.vg.json │ │ ├── vega_6523.vg.json │ │ ├── vega_6524.vg.json │ │ ├── vega_6525.vg.json │ │ ├── vega_6526.vg.json │ │ ├── vega_6527.vg.json │ │ ├── vega_6528.vg.json │ │ ├── vega_6529.vg.json │ │ ├── vega_6530.vg.json │ │ ├── vega_6531.vg.json │ │ ├── vega_6532.vg.json │ │ ├── vega_6533.vg.json │ │ ├── vega_6534.vg.json │ │ ├── vega_6535.vg.json │ │ ├── vega_6536.vg.json │ │ ├── vega_6537.vg.json │ │ ├── vega_6538.vg.json │ │ ├── vega_6539.vg.json │ │ ├── vega_6540.vg.json │ │ ├── vega_6541.vg.json │ │ ├── vega_6542.vg.json │ │ ├── vega_6543.vg.json │ │ ├── vega_6544.vg.json │ │ ├── vega_6545.vg.json │ │ ├── vega_6546.vg.json │ │ ├── vega_6547.vg.json │ │ ├── vega_6548.vg.json │ │ ├── vega_6549.vg.json │ │ ├── vega_6550.vg.json │ │ ├── vega_6551.vg.json │ │ ├── vega_6552.vg.json │ │ ├── vega_6553.vg.json │ │ ├── vega_6554.vg.json │ │ ├── vega_6555.vg.json │ │ ├── vega_6556.vg.json │ │ ├── vega_6557.vg.json │ │ ├── vega_6558.vg.json │ │ ├── vega_6559.vg.json │ │ ├── vega_6560.vg.json │ │ ├── vega_6561.vg.json │ │ ├── vega_6562.vg.json │ │ ├── vega_6563.vg.json │ │ ├── vega_6564.vg.json │ │ ├── vega_6565.vg.json │ │ ├── vega_6566.vg.json │ │ ├── vega_6567.vg.json │ │ ├── vega_6568.vg.json │ │ ├── vega_6569.vg.json │ │ ├── vega_6570.vg.json │ │ ├── vega_6571.vg.json │ │ ├── vega_6572.vg.json │ │ ├── vega_6573.vg.json │ │ ├── vega_6574.vg.json │ │ ├── vega_6575.vg.json │ │ ├── vega_6576.vg.json │ │ ├── vega_6577.vg.json │ │ ├── vega_6578.vg.json │ │ ├── vega_6579.vg.json │ │ ├── vega_6580.vg.json │ │ ├── vega_6581.vg.json │ │ ├── vega_6582.vg.json │ │ ├── vega_6583.vg.json │ │ ├── vega_6584.vg.json │ │ ├── vega_6585.vg.json │ │ ├── vega_6586.vg.json │ │ ├── vega_6587.vg.json │ │ ├── vega_6588.vg.json │ │ ├── vega_6589.vg.json │ │ ├── vega_6590.vg.json │ │ ├── vega_6591.vg.json │ │ ├── vega_6592.vg.json │ │ ├── vega_6593.vg.json │ │ ├── vega_6594.vg.json │ │ ├── vega_6595.vg.json │ │ ├── vega_6596.vg.json │ │ ├── vega_6597.vg.json │ │ ├── vega_6598.vg.json │ │ ├── vega_6599.vg.json │ │ ├── vega_6600.vg.json │ │ ├── vega_6601.vg.json │ │ ├── vega_6602.vg.json │ │ ├── vega_6603.vg.json │ │ ├── vega_6604.vg.json │ │ ├── vega_6605.vg.json │ │ ├── vega_6606.vg.json │ │ ├── vega_6607.vg.json │ │ ├── vega_6608.vg.json │ │ ├── vega_6609.vg.json │ │ ├── vega_6610.vg.json │ │ ├── vega_6611.vg.json │ │ ├── vega_6612.vg.json │ │ ├── vega_6613.vg.json │ │ ├── vega_6614.vg.json │ │ ├── vega_6615.vg.json │ │ ├── vega_6616.vg.json │ │ ├── vega_6617.vg.json │ │ ├── vega_6618.vg.json │ │ ├── vega_6619.vg.json │ │ ├── vega_6620.vg.json │ │ ├── vega_6621.vg.json │ │ ├── vega_6622.vg.json │ │ ├── vega_6623.vg.json │ │ ├── vega_6624.vg.json │ │ ├── vega_6625.vg.json │ │ ├── vega_6626.vg.json │ │ ├── vega_6627.vg.json │ │ ├── vega_6628.vg.json │ │ ├── vega_6629.vg.json │ │ ├── vega_6630.vg.json │ │ ├── vega_6631.vg.json │ │ ├── vega_6632.vg.json │ │ ├── vega_6633.vg.json │ │ ├── vega_6634.vg.json │ │ ├── vega_6635.vg.json │ │ ├── vega_6636.vg.json │ │ ├── vega_6637.vg.json │ │ ├── vega_6638.vg.json │ │ ├── vega_6639.vg.json │ │ ├── vega_6640.vg.json │ │ ├── vega_6641.vg.json │ │ ├── vega_6642.vg.json │ │ ├── vega_6643.vg.json │ │ ├── vega_6644.vg.json │ │ ├── vega_6645.vg.json │ │ ├── vega_6646.vg.json │ │ ├── vega_6647.vg.json │ │ ├── vega_6648.vg.json │ │ ├── vega_6649.vg.json │ │ ├── vega_6650.vg.json │ │ ├── vega_6651.vg.json │ │ ├── vega_6652.vg.json │ │ ├── vega_6653.vg.json │ │ ├── vega_6654.vg.json │ │ ├── vega_6655.vg.json │ │ ├── vega_6656.vg.json │ │ ├── vega_6657.vg.json │ │ ├── vega_6658.vg.json │ │ ├── vega_6659.vg.json │ │ ├── vega_6660.vg.json │ │ ├── vega_6661.vg.json │ │ ├── vega_6662.vg.json │ │ ├── vega_6663.vg.json │ │ ├── vega_6664.vg.json │ │ ├── vega_6665.vg.json │ │ ├── vega_6666.vg.json │ │ ├── vega_6667.vg.json │ │ ├── vega_6668.vg.json │ │ ├── vega_6669.vg.json │ │ ├── vega_6670.vg.json │ │ ├── vega_6672.vg.json │ │ ├── vega_6673.vg.json │ │ ├── vega_6674.vg.json │ │ ├── vega_6675.vg.json │ │ ├── vega_6676.vg.json │ │ ├── vega_6677.vg.json │ │ ├── vega_6678.vg.json │ │ ├── vega_6679.vg.json │ │ ├── vega_6680.vg.json │ │ ├── vega_6681.vg.json │ │ ├── vega_6682.vg.json │ │ ├── vega_6683.vg.json │ │ ├── vega_6684.vg.json │ │ ├── vega_6685.vg.json │ │ ├── vega_6686.vg.json │ │ ├── vega_6687.vg.json │ │ ├── vega_6688.vg.json │ │ ├── vega_6689.vg.json │ │ ├── vega_6690.vg.json │ │ ├── vega_6691.vg.json │ │ ├── vega_6692.vg.json │ │ ├── vega_6693.vg.json │ │ ├── vega_6694.vg.json │ │ ├── vega_6695.vg.json │ │ ├── vega_6696.vg.json │ │ ├── vega_6697.vg.json │ │ ├── vega_6698.vg.json │ │ ├── vega_6699.vg.json │ │ ├── vega_6700.vg.json │ │ ├── vega_6701.vg.json │ │ ├── vega_6702.vg.json │ │ ├── vega_6703.vg.json │ │ ├── vega_6704.vg.json │ │ ├── vega_6705.vg.json │ │ ├── vega_6706.vg.json │ │ ├── vega_6707.vg.json │ │ ├── vega_6708.vg.json │ │ ├── vega_6709.vg.json │ │ ├── vega_6710.vg.json │ │ ├── vega_6711.vg.json │ │ ├── vega_6712.vg.json │ │ ├── vega_6713.vg.json │ │ ├── vega_6714.vg.json │ │ ├── vega_6715.vg.json │ │ ├── vega_6716.vg.json │ │ ├── vega_6717.vg.json │ │ ├── vega_6718.vg.json │ │ ├── vega_6719.vg.json │ │ ├── vega_6720.vg.json │ │ ├── vega_6721.vg.json │ │ ├── vega_6722.vg.json │ │ ├── vega_6723.vg.json │ │ ├── vega_6724.vg.json │ │ ├── vega_6725.vg.json │ │ ├── vega_6726.vg.json │ │ ├── vega_6727.vg.json │ │ ├── vega_6728.vg.json │ │ ├── vega_6729.vg.json │ │ ├── vega_6730.vg.json │ │ ├── vega_6731.vg.json │ │ ├── vega_6732.vg.json │ │ ├── vega_6733.vg.json │ │ ├── vega_6734.vg.json │ │ ├── vega_6735.vg.json │ │ ├── vega_6736.vg.json │ │ ├── vega_6737.vg.json │ │ ├── vega_6738.vg.json │ │ ├── vega_6739.vg.json │ │ ├── vega_6740.vg.json │ │ ├── vega_6741.vg.json │ │ ├── vega_6742.vg.json │ │ ├── vega_6743.vg.json │ │ ├── vega_6744.vg.json │ │ ├── vega_6745.vg.json │ │ ├── vega_6746.vg.json │ │ ├── vega_6747.vg.json │ │ ├── vega_6748.vg.json │ │ ├── vega_6749.vg.json │ │ ├── vega_6750.vg.json │ │ ├── vega_6751.vg.json │ │ ├── vega_6752.vg.json │ │ ├── vega_6753.vg.json │ │ ├── vega_6754.vg.json │ │ ├── vega_6755.vg.json │ │ ├── vega_6756.vg.json │ │ ├── vega_6757.vg.json │ │ ├── vega_6758.vg.json │ │ ├── vega_6759.vg.json │ │ ├── vega_6760.vg.json │ │ ├── vega_6761.vg.json │ │ ├── vega_6762.vg.json │ │ ├── vega_6763.vg.json │ │ ├── vega_6764.vg.json │ │ ├── vega_6765.vg.json │ │ ├── vega_6766.vg.json │ │ ├── vega_6767.vg.json │ │ ├── vega_6768.vg.json │ │ ├── vega_6769.vg.json │ │ ├── vega_6770.vg.json │ │ ├── vega_6771.vg.json │ │ ├── vega_6772.vg.json │ │ ├── vega_6773.vg.json │ │ ├── vega_6774.vg.json │ │ ├── vega_6775.vg.json │ │ ├── vega_6776.vg.json │ │ ├── vega_6777.vg.json │ │ ├── vega_6778.vg.json │ │ ├── vega_6779.vg.json │ │ ├── vega_6780.vg.json │ │ ├── vega_6781.vg.json │ │ ├── vega_6782.vg.json │ │ ├── vega_6783.vg.json │ │ ├── vega_6784.vg.json │ │ ├── vega_6785.vg.json │ │ ├── vega_6786.vg.json │ │ ├── vega_6787.vg.json │ │ ├── vega_6788.vg.json │ │ ├── vega_6789.vg.json │ │ ├── vega_6790.vg.json │ │ ├── vega_6791.vg.json │ │ ├── vega_6792.vg.json │ │ ├── vega_6793.vg.json │ │ ├── vega_6794.vg.json │ │ ├── vega_6795.vg.json │ │ ├── vega_6796.vg.json │ │ ├── vega_6797.vg.json │ │ ├── vega_6798.vg.json │ │ ├── vega_6799.vg.json │ │ ├── vega_6800.vg.json │ │ ├── vega_6801.vg.json │ │ ├── vega_6802.vg.json │ │ ├── vega_6803.vg.json │ │ ├── vega_6804.vg.json │ │ ├── vega_6805.vg.json │ │ ├── vega_6806.vg.json │ │ ├── vega_6807.vg.json │ │ ├── vega_6808.vg.json │ │ ├── vega_6809.vg.json │ │ ├── vega_6810.vg.json │ │ ├── vega_6811.vg.json │ │ ├── vega_6812.vg.json │ │ ├── vega_6813.vg.json │ │ ├── vega_6814.vg.json │ │ ├── vega_6815.vg.json │ │ ├── vega_6816.vg.json │ │ ├── vega_6817.vg.json │ │ ├── vega_6818.vg.json │ │ ├── vega_6819.vg.json │ │ ├── vega_6820.vg.json │ │ ├── vega_6821.vg.json │ │ ├── vega_6822.vg.json │ │ ├── vega_6823.vg.json │ │ ├── vega_6824.vg.json │ │ ├── vega_6825.vg.json │ │ ├── vega_6826.vg.json │ │ ├── vega_6827.vg.json │ │ ├── vega_6828.vg.json │ │ ├── vega_6829.vg.json │ │ ├── vega_6830.vg.json │ │ ├── vega_6831.vg.json │ │ ├── vega_6832.vg.json │ │ ├── vega_6833.vg.json │ │ ├── vega_6834.vg.json │ │ ├── vega_6835.vg.json │ │ ├── vega_6836.vg.json │ │ ├── vega_6837.vg.json │ │ ├── vega_6838.vg.json │ │ ├── vega_6839.vg.json │ │ ├── vega_6840.vg.json │ │ ├── vega_6841.vg.json │ │ ├── vega_6842.vg.json │ │ ├── vega_6843.vg.json │ │ ├── vega_6844.vg.json │ │ ├── vega_6845.vg.json │ │ ├── vega_6846.vg.json │ │ ├── vega_6847.vg.json │ │ ├── vega_6848.vg.json │ │ ├── vega_6849.vg.json │ │ ├── vega_6850.vg.json │ │ ├── vega_6851.vg.json │ │ ├── vega_6852.vg.json │ │ ├── vega_6853.vg.json │ │ ├── vega_6854.vg.json │ │ ├── vega_6855.vg.json │ │ ├── vega_6856.vg.json │ │ ├── vega_6857.vg.json │ │ ├── vega_6858.vg.json │ │ ├── vega_6859.vg.json │ │ ├── vega_6860.vg.json │ │ ├── vega_6861.vg.json │ │ ├── vega_6862.vg.json │ │ ├── vega_6863.vg.json │ │ ├── vega_6864.vg.json │ │ ├── vega_6865.vg.json │ │ ├── vega_6866.vg.json │ │ ├── vega_6867.vg.json │ │ ├── vega_6868.vg.json │ │ ├── vega_6869.vg.json │ │ ├── vega_6870.vg.json │ │ ├── vega_6871.vg.json │ │ ├── vega_6872.vg.json │ │ ├── vega_6873.vg.json │ │ ├── vega_6874.vg.json │ │ ├── vega_6875.vg.json │ │ ├── vega_6876.vg.json │ │ ├── vega_6877.vg.json │ │ ├── vega_6878.vg.json │ │ ├── vega_6879.vg.json │ │ ├── vega_6880.vg.json │ │ ├── vega_6881.vg.json │ │ ├── vega_6882.vg.json │ │ ├── vega_6883.vg.json │ │ ├── vega_6884.vg.json │ │ ├── vega_6885.vg.json │ │ ├── vega_6886.vg.json │ │ ├── vega_6887.vg.json │ │ ├── vega_6888.vg.json │ │ ├── vega_6889.vg.json │ │ ├── vega_6890.vg.json │ │ ├── vega_6891.vg.json │ │ ├── vega_6892.vg.json │ │ ├── vega_6893.vg.json │ │ ├── vega_6894.vg.json │ │ ├── vega_6895.vg.json │ │ ├── vega_6896.vg.json │ │ ├── vega_6897.vg.json │ │ ├── vega_6898.vg.json │ │ ├── vega_6899.vg.json │ │ ├── vega_6900.vg.json │ │ ├── vega_6901.vg.json │ │ ├── vega_6902.vg.json │ │ ├── vega_6903.vg.json │ │ ├── vega_6904.vg.json │ │ ├── vega_6905.vg.json │ │ ├── vega_6906.vg.json │ │ ├── vega_6907.vg.json │ │ ├── vega_6908.vg.json │ │ ├── vega_6909.vg.json │ │ ├── vega_6910.vg.json │ │ ├── vega_6911.vg.json │ │ ├── vega_6912.vg.json │ │ ├── vega_6913.vg.json │ │ ├── vega_6914.vg.json │ │ ├── vega_6915.vg.json │ │ ├── vega_6916.vg.json │ │ ├── vega_6917.vg.json │ │ ├── vega_6918.vg.json │ │ ├── vega_6919.vg.json │ │ ├── vega_6920.vg.json │ │ ├── vega_6921.vg.json │ │ ├── vega_6922.vg.json │ │ ├── vega_6923.vg.json │ │ ├── vega_6924.vg.json │ │ ├── vega_6925.vg.json │ │ ├── vega_6926.vg.json │ │ ├── vega_6927.vg.json │ │ ├── vega_6928.vg.json │ │ ├── vega_6929.vg.json │ │ ├── vega_6930.vg.json │ │ ├── vega_6931.vg.json │ │ ├── vega_6932.vg.json │ │ ├── vega_6933.vg.json │ │ ├── vega_6934.vg.json │ │ ├── vega_6935.vg.json │ │ ├── vega_6936.vg.json │ │ ├── vega_6937.vg.json │ │ ├── vega_6938.vg.json │ │ ├── vega_6939.vg.json │ │ ├── vega_6940.vg.json │ │ ├── vega_6941.vg.json │ │ ├── vega_6942.vg.json │ │ ├── vega_6943.vg.json │ │ ├── vega_6944.vg.json │ │ ├── vega_6945.vg.json │ │ ├── vega_6946.vg.json │ │ ├── vega_6947.vg.json │ │ ├── vega_6948.vg.json │ │ ├── vega_6949.vg.json │ │ ├── vega_6950.vg.json │ │ ├── vega_6951.vg.json │ │ ├── vega_6952.vg.json │ │ ├── vega_6953.vg.json │ │ ├── vega_6954.vg.json │ │ ├── vega_6955.vg.json │ │ ├── vega_6956.vg.json │ │ ├── vega_6957.vg.json │ │ ├── vega_6958.vg.json │ │ ├── vega_6959.vg.json │ │ ├── vega_6960.vg.json │ │ ├── vega_6961.vg.json │ │ ├── vega_6962.vg.json │ │ ├── vega_6963.vg.json │ │ ├── vega_6964.vg.json │ │ ├── vega_6965.vg.json │ │ ├── vega_6966.vg.json │ │ ├── vega_6967.vg.json │ │ ├── vega_6968.vg.json │ │ ├── vega_6969.vg.json │ │ ├── vega_6970.vg.json │ │ ├── vega_6971.vg.json │ │ ├── vega_6972.vg.json │ │ ├── vega_6973.vg.json │ │ ├── vega_6974.vg.json │ │ ├── vega_6975.vg.json │ │ ├── vega_6976.vg.json │ │ ├── vega_6977.vg.json │ │ ├── vega_6978.vg.json │ │ ├── vega_6979.vg.json │ │ ├── vega_6980.vg.json │ │ ├── vega_6981.vg.json │ │ ├── vega_6982.vg.json │ │ ├── vega_6983.vg.json │ │ ├── vega_6984.vg.json │ │ ├── vega_6985.vg.json │ │ ├── vega_6986.vg.json │ │ ├── vega_6987.vg.json │ │ ├── vega_6988.vg.json │ │ ├── vega_6989.vg.json │ │ ├── vega_6990.vg.json │ │ ├── vega_6991.vg.json │ │ ├── vega_6992.vg.json │ │ ├── vega_6993.vg.json │ │ ├── vega_6994.vg.json │ │ ├── vega_6995.vg.json │ │ ├── vega_6996.vg.json │ │ ├── vega_6997.vg.json │ │ ├── vega_6998.vg.json │ │ ├── vega_6999.vg.json │ │ ├── vega_7000.vg.json │ │ ├── vega_7001.vg.json │ │ ├── vega_7002.vg.json │ │ ├── vega_7003.vg.json │ │ ├── vega_7004.vg.json │ │ ├── vega_7005.vg.json │ │ ├── vega_7006.vg.json │ │ ├── vega_7007.vg.json │ │ ├── vega_7008.vg.json │ │ ├── vega_7009.vg.json │ │ ├── vega_7010.vg.json │ │ ├── vega_7011.vg.json │ │ ├── vega_7012.vg.json │ │ ├── vega_7013.vg.json │ │ ├── vega_7014.vg.json │ │ ├── vega_7015.vg.json │ │ ├── vega_7016.vg.json │ │ ├── vega_7017.vg.json │ │ ├── vega_7018.vg.json │ │ ├── vega_7019.vg.json │ │ ├── vega_7020.vg.json │ │ ├── vega_7021.vg.json │ │ ├── vega_7022.vg.json │ │ ├── vega_7023.vg.json │ │ ├── vega_7024.vg.json │ │ ├── vega_7025.vg.json │ │ ├── vega_7026.vg.json │ │ ├── vega_7027.vg.json │ │ ├── vega_7028.vg.json │ │ ├── vega_7029.vg.json │ │ ├── vega_7030.vg.json │ │ ├── vega_7031.vg.json │ │ ├── vega_7032.vg.json │ │ ├── vega_7033.vg.json │ │ ├── vega_7034.vg.json │ │ ├── vega_7035.vg.json │ │ ├── vega_7036.vg.json │ │ ├── vega_7037.vg.json │ │ ├── vega_7038.vg.json │ │ ├── vega_7039.vg.json │ │ ├── vega_7040.vg.json │ │ ├── vega_7041.vg.json │ │ ├── vega_7042.vg.json │ │ ├── vega_7043.vg.json │ │ ├── vega_7044.vg.json │ │ ├── vega_7045.vg.json │ │ ├── vega_7046.vg.json │ │ ├── vega_7047.vg.json │ │ ├── vega_7048.vg.json │ │ ├── vega_7049.vg.json │ │ ├── vega_7050.vg.json │ │ ├── vega_7051.vg.json │ │ ├── vega_7052.vg.json │ │ ├── vega_7053.vg.json │ │ ├── vega_7054.vg.json │ │ ├── vega_7055.vg.json │ │ ├── vega_7056.vg.json │ │ ├── vega_7057.vg.json │ │ ├── vega_7058.vg.json │ │ ├── vega_7059.vg.json │ │ ├── vega_7060.vg.json │ │ ├── vega_7061.vg.json │ │ ├── vega_7062.vg.json │ │ ├── vega_7063.vg.json │ │ ├── vega_7064.vg.json │ │ ├── vega_7065.vg.json │ │ ├── vega_7066.vg.json │ │ ├── vega_7067.vg.json │ │ ├── vega_7068.vg.json │ │ ├── vega_7069.vg.json │ │ ├── vega_7070.vg.json │ │ ├── vega_7071.vg.json │ │ ├── vega_7072.vg.json │ │ ├── vega_7073.vg.json │ │ ├── vega_7074.vg.json │ │ ├── vega_7075.vg.json │ │ ├── vega_7076.vg.json │ │ ├── vega_7077.vg.json │ │ ├── vega_7078.vg.json │ │ ├── vega_7079.vg.json │ │ ├── vega_7080.vg.json │ │ ├── vega_7081.vg.json │ │ ├── vega_7082.vg.json │ │ ├── vega_7083.vg.json │ │ ├── vega_7084.vg.json │ │ ├── vega_7085.vg.json │ │ ├── vega_7086.vg.json │ │ ├── vega_7087.vg.json │ │ ├── vega_7088.vg.json │ │ ├── vega_7089.vg.json │ │ ├── vega_7090.vg.json │ │ ├── vega_7091.vg.json │ │ ├── vega_7092.vg.json │ │ ├── vega_7093.vg.json │ │ ├── vega_7094.vg.json │ │ ├── vega_7095.vg.json │ │ ├── vega_7096.vg.json │ │ ├── vega_7097.vg.json │ │ ├── vega_7098.vg.json │ │ ├── vega_7099.vg.json │ │ ├── vega_7100.vg.json │ │ ├── vega_7101.vg.json │ │ ├── vega_7102.vg.json │ │ ├── vega_7103.vg.json │ │ ├── vega_7104.vg.json │ │ ├── vega_7105.vg.json │ │ ├── vega_7106.vg.json │ │ ├── vega_7107.vg.json │ │ ├── vega_7108.vg.json │ │ ├── vega_7109.vg.json │ │ ├── vega_7110.vg.json │ │ ├── vega_7111.vg.json │ │ ├── vega_7112.vg.json │ │ ├── vega_7113.vg.json │ │ ├── vega_7114.vg.json │ │ ├── vega_7115.vg.json │ │ ├── vega_7116.vg.json │ │ ├── vega_7117.vg.json │ │ ├── vega_7118.vg.json │ │ ├── vega_7119.vg.json │ │ ├── vega_7120.vg.json │ │ ├── vega_7121.vg.json │ │ ├── vega_7122.vg.json │ │ ├── vega_7123.vg.json │ │ ├── vega_7124.vg.json │ │ ├── vega_7125.vg.json │ │ ├── vega_7126.vg.json │ │ ├── vega_7127.vg.json │ │ ├── vega_7128.vg.json │ │ ├── vega_7129.vg.json │ │ ├── vega_7130.vg.json │ │ ├── vega_7131.vg.json │ │ ├── vega_7132.vg.json │ │ ├── vega_7133.vg.json │ │ ├── vega_7134.vg.json │ │ ├── vega_7135.vg.json │ │ ├── vega_7136.vg.json │ │ ├── vega_7137.vg.json │ │ ├── vega_7138.vg.json │ │ ├── vega_7139.vg.json │ │ ├── vega_7140.vg.json │ │ ├── vega_7141.vg.json │ │ ├── vega_7142.vg.json │ │ ├── vega_7143.vg.json │ │ ├── vega_7144.vg.json │ │ ├── vega_7145.vg.json │ │ ├── vega_7146.vg.json │ │ ├── vega_7147.vg.json │ │ ├── vega_7148.vg.json │ │ ├── vega_7149.vg.json │ │ ├── vega_7150.vg.json │ │ ├── vega_7151.vg.json │ │ ├── vega_7152.vg.json │ │ ├── vega_7153.vg.json │ │ ├── vega_7154.vg.json │ │ ├── vega_7155.vg.json │ │ ├── vega_7156.vg.json │ │ ├── vega_7157.vg.json │ │ ├── vega_7158.vg.json │ │ ├── vega_7159.vg.json │ │ ├── vega_7160.vg.json │ │ ├── vega_7161.vg.json │ │ ├── vega_7162.vg.json │ │ ├── vega_7163.vg.json │ │ ├── vega_7164.vg.json │ │ ├── vega_7165.vg.json │ │ ├── vega_7166.vg.json │ │ ├── vega_7167.vg.json │ │ ├── vega_7168.vg.json │ │ ├── vega_7169.vg.json │ │ ├── vega_7170.vg.json │ │ ├── vega_7171.vg.json │ │ ├── vega_7172.vg.json │ │ ├── vega_7173.vg.json │ │ ├── vega_7174.vg.json │ │ ├── vega_7175.vg.json │ │ ├── vega_7176.vg.json │ │ ├── vega_7177.vg.json │ │ ├── vega_7178.vg.json │ │ ├── vega_7179.vg.json │ │ ├── vega_7180.vg.json │ │ ├── vega_7181.vg.json │ │ ├── vega_7182.vg.json │ │ ├── vega_7183.vg.json │ │ ├── vega_7184.vg.json │ │ ├── vega_7185.vg.json │ │ ├── vega_7186.vg.json │ │ ├── vega_7187.vg.json │ │ ├── vega_7188.vg.json │ │ ├── vega_7189.vg.json │ │ ├── vega_7190.vg.json │ │ ├── vega_7191.vg.json │ │ ├── vega_7192.vg.json │ │ ├── vega_7193.vg.json │ │ ├── vega_7194.vg.json │ │ ├── vega_7195.vg.json │ │ ├── vega_7196.vg.json │ │ ├── vega_7197.vg.json │ │ ├── vega_7198.vg.json │ │ ├── vega_7199.vg.json │ │ ├── vega_7200.vg.json │ │ ├── vega_7201.vg.json │ │ ├── vega_7202.vg.json │ │ ├── vega_7203.vg.json │ │ ├── vega_7204.vg.json │ │ ├── vega_7205.vg.json │ │ ├── vega_7206.vg.json │ │ ├── vega_7207.vg.json │ │ ├── vega_7208.vg.json │ │ ├── vega_7209.vg.json │ │ ├── vega_7210.vg.json │ │ ├── vega_7211.vg.json │ │ ├── vega_7212.vg.json │ │ ├── vega_7213.vg.json │ │ ├── vega_7214.vg.json │ │ ├── vega_7215.vg.json │ │ ├── vega_7216.vg.json │ │ ├── vega_7217.vg.json │ │ ├── vega_7218.vg.json │ │ ├── vega_7219.vg.json │ │ ├── vega_7220.vg.json │ │ ├── vega_7221.vg.json │ │ ├── vega_7222.vg.json │ │ ├── vega_7223.vg.json │ │ ├── vega_7224.vg.json │ │ ├── vega_7225.vg.json │ │ ├── vega_7226.vg.json │ │ ├── vega_7227.vg.json │ │ ├── vega_7228.vg.json │ │ ├── vega_7229.vg.json │ │ ├── vega_7230.vg.json │ │ ├── vega_7231.vg.json │ │ ├── vega_7232.vg.json │ │ ├── vega_7233.vg.json │ │ ├── vega_7234.vg.json │ │ ├── vega_7235.vg.json │ │ ├── vega_7236.vg.json │ │ ├── vega_7237.vg.json │ │ ├── vega_7238.vg.json │ │ ├── vega_7239.vg.json │ │ ├── vega_7240.vg.json │ │ ├── vega_7241.vg.json │ │ ├── vega_7242.vg.json │ │ ├── vega_7243.vg.json │ │ ├── vega_7244.vg.json │ │ ├── vega_7245.vg.json │ │ ├── vega_7246.vg.json │ │ └── vega_7247.vg.json ├── vega-lite-v4 │ ├── .gitignore │ ├── a_check.py │ ├── airport_connections.vl.json │ ├── airport_connections_normalized.vl.json │ ├── arc_donut.vl.json │ ├── arc_ordinal_theta.vl.json │ ├── arc_params.vl.json │ ├── arc_pie.vl.json │ ├── arc_pie_pyramid.vl.json │ ├── arc_radial.vl.json │ ├── arc_radial_histogram.vl.json │ ├── arc_radial_histogram_normalized.vl.json │ ├── arc_radial_normalized.vl.json │ ├── area.vl.json │ ├── area_cumulative_freq.vl.json │ ├── area_density.vl.json │ ├── area_density_facet.vl.json │ ├── area_density_facet_normalized.vl.json │ ├── area_density_stacked.vl.json │ ├── area_density_stacked_fold.vl.json │ ├── area_gradient.vl.json │ ├── area_gradient_normalized.vl.json │ ├── area_horizon.vl.json │ ├── area_horizon_normalized.vl.json │ ├── area_overlay.vl.json │ ├── area_overlay_normalized.vl.json │ ├── area_params.vl.json │ ├── area_temperature_range.vl.json │ ├── area_vertical.vl.json │ ├── argmin_spaces.vl.json │ ├── bar.vl.json │ ├── bar_1d.vl.json │ ├── bar_1d_step_config.vl.json │ ├── bar_aggregate.vl.json │ ├── bar_aggregate_count.vl.json │ ├── bar_aggregate_format.vl.json │ ├── bar_aggregate_size.vl.json │ ├── bar_aggregate_sort_by_encoding.vl.json │ ├── bar_aggregate_sort_mean.vl.json │ ├── bar_aggregate_transform.vl.json │ ├── bar_aggregate_vertical.vl.json │ ├── bar_argmax.vl.json │ ├── bar_argmax_transform.vl.json │ ├── bar_array_aggregate.vl.json │ ├── bar_axis_orient_signal_future.vl.json │ ├── bar_axis_space_saving.vl.json │ ├── bar_binned_data.vl.json │ ├── bar_color_disabled_scale.vl.json │ ├── bar_column_fold.vl.json │ ├── bar_column_fold_normalized.vl.json │ ├── bar_column_pivot.vl.json │ ├── bar_corner_radius_end.vl.json │ ├── bar_count_minimap.vl.json │ ├── bar_custom_sort_full.vl.json │ ├── bar_custom_sort_partial.vl.json │ ├── bar_custom_time_domain.vl.json │ ├── bar_default_tooltip_title_null.vl.json │ ├── bar_distinct.vl.json │ ├── bar_diverging_stack_population_pyramid.vl.json │ ├── bar_diverging_stack_transform.vl.json │ ├── bar_filter_calc.vl.json │ ├── bar_fit.vl.json │ ├── bar_gantt.vl.json │ ├── bar_grouped.vl.json │ ├── bar_grouped_horizontal.vl.json │ ├── bar_grouped_horizontal_normalized.vl.json │ ├── bar_grouped_normalized.vl.json │ ├── bar_layered_transparent.vl.json │ ├── bar_layered_weather.vl.json │ ├── bar_layered_weather_normalized.vl.json │ ├── bar_month.vl.json │ ├── bar_month_band.vl.json │ ├── bar_month_band_config.vl.json │ ├── bar_month_temporal.vl.json │ ├── bar_month_temporal_initial.vl.json │ ├── bar_multi_values_per_categories.vl.json │ ├── bar_negative.vl.json │ ├── bar_params.vl.json │ ├── bar_size_default.vl.json │ ├── bar_size_explicit_bad.vl.json │ ├── bar_size_fit.vl.json │ ├── bar_size_responsive.vl.json │ ├── bar_size_responsive_normalized.vl.json │ ├── bar_size_step_small.vl.json │ ├── bar_sort_by_count.vl.json │ ├── bar_swap_axes.vl.json │ ├── bar_swap_custom.vl.json │ ├── bar_title.vl.json │ ├── bar_title_start.vl.json │ ├── bar_tooltip.vl.json │ ├── bar_tooltip_multi.vl.json │ ├── bar_tooltip_title.vl.json │ ├── bar_yearmonth.vl.json │ ├── bar_yearmonth_custom_format.vl.json │ ├── boxplot_1D_horizontal.vl.json │ ├── boxplot_1D_horizontal_custom_mark.vl.json │ ├── boxplot_1D_horizontal_custom_mark_normalized.vl.json │ ├── boxplot_1D_horizontal_explicit.vl.json │ ├── boxplot_1D_horizontal_explicit_normalized.vl.json │ ├── boxplot_1D_horizontal_normalized.vl.json │ ├── boxplot_1D_vertical.vl.json │ ├── boxplot_1D_vertical_normalized.vl.json │ ├── boxplot_2D_horizontal.vl.json │ ├── boxplot_2D_horizontal_color_size.vl.json │ ├── boxplot_2D_horizontal_color_size_normalized.vl.json │ ├── boxplot_2D_horizontal_normalized.vl.json │ ├── boxplot_2D_vertical.vl.json │ ├── boxplot_2D_vertical_normalized.vl.json │ ├── boxplot_minmax_2D_horizontal.vl.json │ ├── boxplot_minmax_2D_horizontal_custom_midtick_color.vl.json │ ├── boxplot_minmax_2D_horizontal_custom_midtick_color_normalized.vl.json │ ├── boxplot_minmax_2D_horizontal_normalized.vl.json │ ├── boxplot_minmax_2D_vertical.vl.json │ ├── boxplot_minmax_2D_vertical_normalized.vl.json │ ├── boxplot_preaggregated.vl.json │ ├── boxplot_preaggregated_normalized.vl.json │ ├── boxplot_tooltip_aggregate.vl.json │ ├── boxplot_tooltip_aggregate_normalized.vl.json │ ├── boxplot_tooltip_not_aggregate.vl.json │ ├── boxplot_tooltip_not_aggregate_normalized.vl.json │ ├── brush_table.vl.json │ ├── circle.vl.json │ ├── circle_binned.vl.json │ ├── circle_binned_maxbins_2.vl.json │ ├── circle_binned_maxbins_20.vl.json │ ├── circle_binned_maxbins_5.vl.json │ ├── circle_bubble_health_income.vl.json │ ├── circle_flatten.vl.json │ ├── circle_github_punchcard.vl.json │ ├── circle_labelangle_orient_signal_future.vl.json │ ├── circle_natural_disasters.vl.json │ ├── circle_opacity.vl.json │ ├── circle_scale_quantile.vl.json │ ├── circle_scale_quantize.vl.json │ ├── circle_scale_threshold.vl.json │ ├── circle_wilkinson_dotplot.vl.json │ ├── circle_wilkinson_dotplot_stacked.vl.json │ ├── concat_bar_layer_circle.vl.json │ ├── concat_bar_scales_discretize.vl.json │ ├── concat_bar_scales_discretize_2_cols.vl.json │ ├── concat_hover.vl.json │ ├── concat_hover_filter.vl.json │ ├── concat_hover_filter_normalized.vl.json │ ├── concat_layer_voyager_result.vl.json │ ├── concat_layer_voyager_result_normalized.vl.json │ ├── concat_marginal_histograms.vl.json │ ├── concat_population_pyramid.vl.json │ ├── concat_weather.vl.json │ ├── connected_scatterplot.vl.json │ ├── connected_scatterplot_normalized.vl.json │ ├── embedded_csv.vl.json │ ├── errorband_2d_horizontal_color_encoding.vl.json │ ├── errorband_2d_horizontal_color_encoding_normalized.vl.json │ ├── errorband_2d_vertical_borders.vl.json │ ├── errorband_2d_vertical_borders_normalized.vl.json │ ├── errorband_tooltip.vl.json │ ├── errorband_tooltip_normalized.vl.json │ ├── errorbar_2d_vertical_ticks.vl.json │ ├── errorbar_2d_vertical_ticks_normalized.vl.json │ ├── errorbar_aggregate.vl.json │ ├── errorbar_horizontal_aggregate.vl.json │ ├── errorbar_tooltip.vl.json │ ├── errorbar_tooltip_normalized.vl.json │ ├── facet_bullet.vl.json │ ├── facet_bullet_normalized.vl.json │ ├── facet_column_facet_column_point_future.vl.json │ ├── facet_column_facet_row_point_future.vl.json │ ├── facet_cross_independent_scale.vl.json │ ├── facet_custom.vl.json │ ├── facet_custom_header.vl.json │ ├── facet_custom_header_normalized.vl.json │ ├── facet_custom_normalized.vl.json │ ├── facet_grid_bar.vl.json │ ├── facet_grid_bar_normalized.vl.json │ ├── facet_independent_scale.vl.json │ ├── facet_independent_scale_layer_broken.vl.json │ ├── facet_row_facet_row_point_future.vl.json │ ├── geo_choropleth.vl.json │ ├── geo_circle.vl.json │ ├── geo_constant_value.vl.json │ ├── geo_constant_value_normalized.vl.json │ ├── geo_custom_projection.vl.json │ ├── geo_custom_projection_normalized.vl.json │ ├── geo_graticule.vl.json │ ├── geo_graticule_object.vl.json │ ├── geo_layer.vl.json │ ├── geo_layer_line_london.vl.json │ ├── geo_line.vl.json │ ├── geo_point.vl.json │ ├── geo_repeat.vl.json │ ├── geo_repeat_normalized.vl.json │ ├── geo_rule.vl.json │ ├── geo_sphere.vl.json │ ├── geo_sphere_normalized.vl.json │ ├── geo_text.vl.json │ ├── geo_text_normalized.vl.json │ ├── geo_trellis.vl.json │ ├── geo_trellis_normalized.vl.json │ ├── hconcat_weather.vl.json │ ├── histogram.vl.json │ ├── histogram_bin_change.vl.json │ ├── histogram_bin_spacing.vl.json │ ├── histogram_bin_spacing_reverse.vl.json │ ├── histogram_bin_transform.vl.json │ ├── histogram_log.vl.json │ ├── histogram_no_spacing.vl.json │ ├── histogram_ordinal.vl.json │ ├── histogram_ordinal_sort.vl.json │ ├── histogram_rel_freq.vl.json │ ├── histogram_reverse.vl.json │ ├── interactive_area_brush.vl.json │ ├── interactive_area_brush_normalized.vl.json │ ├── interactive_bar_select_highlight.vl.json │ ├── interactive_bin_extent.vl.json │ ├── interactive_brush.vl.json │ ├── interactive_concat_layer.vl.json │ ├── interactive_dashboard_europe_pop.vl.json │ ├── interactive_global_development.vl.json │ ├── interactive_global_development_normalized.vl.json │ ├── interactive_index_chart.vl.json │ ├── interactive_index_chart_normalized.vl.json │ ├── interactive_layered_crossfilter.vl.json │ ├── interactive_layered_crossfilter_discrete.vl.json │ ├── interactive_layered_crossfilter_discrete_normalized.vl.json │ ├── interactive_layered_crossfilter_normalized.vl.json │ ├── interactive_legend.vl.json │ ├── interactive_legend_dblclick.vl.json │ ├── interactive_line_brush_cursor.vl.json │ ├── interactive_line_hover.vl.json │ ├── interactive_line_hover_normalized.vl.json │ ├── interactive_multi_line_label.vl.json │ ├── interactive_multi_line_label_normalized.vl.json │ ├── interactive_multi_line_pivot_tooltip.vl.json │ ├── interactive_multi_line_pivot_tooltip_normalized.vl.json │ ├── interactive_multi_line_tooltip.vl.json │ ├── interactive_multi_line_tooltip_normalized.vl.json │ ├── interactive_overview_detail.vl.json │ ├── interactive_paintbrush.vl.json │ ├── interactive_paintbrush_color.vl.json │ ├── interactive_paintbrush_color_nearest.vl.json │ ├── interactive_paintbrush_interval.vl.json │ ├── interactive_paintbrush_simple_all.vl.json │ ├── interactive_paintbrush_simple_none.vl.json │ ├── interactive_panzoom_splom.vl.json │ ├── interactive_panzoom_splom_normalized.vl.json │ ├── interactive_panzoom_vconcat_shared.vl.json │ ├── interactive_query_widgets.vl.json │ ├── interactive_seattle_weather.vl.json │ ├── interactive_splom.vl.json │ ├── interactive_splom_normalized.vl.json │ ├── interactive_stocks_nearest_index.vl.json │ ├── interactive_stocks_nearest_index_normalized.vl.json │ ├── isotype_bar_chart.vl.json │ ├── isotype_bar_chart_emoji.vl.json │ ├── isotype_bar_chart_emoji_normalized.vl.json │ ├── isotype_bar_chart_normalized.vl.json │ ├── isotype_grid.vl.json │ ├── joinaggregate_mean_difference.vl.json │ ├── joinaggregate_mean_difference_by_year.vl.json │ ├── joinaggregate_percent_of_total.vl.json │ ├── joinaggregate_residual_graph.vl.json │ ├── layer_arc_label.vl.json │ ├── layer_arc_label_normalized.vl.json │ ├── layer_bar_annotations.vl.json │ ├── layer_bar_annotations_normalized.vl.json │ ├── layer_bar_fruit.vl.json │ ├── layer_bar_fruit_normalized.vl.json │ ├── layer_bar_labels.vl.json │ ├── layer_bar_labels_grey.vl.json │ ├── layer_bar_labels_grey_normalized.vl.json │ ├── layer_bar_labels_normalized.vl.json │ ├── layer_bar_labels_style.vl.json │ ├── layer_bar_line.vl.json │ ├── layer_bar_line_union.vl.json │ ├── layer_bar_month.vl.json │ ├── layer_boxplot_circle.vl.json │ ├── layer_boxplot_circle_normalized.vl.json │ ├── layer_candlestick.vl.json │ ├── layer_candlestick_normalized.vl.json │ ├── layer_circle_independent_color.vl.json │ ├── layer_color_legend_left.vl.json │ ├── layer_color_legend_left_normalized.vl.json │ ├── layer_cumulative_histogram.vl.json │ ├── layer_cumulative_histogram_normalized.vl.json │ ├── layer_dual_axis.vl.json │ ├── layer_dual_axis_normalized.vl.json │ ├── layer_falkensee.vl.json │ ├── layer_histogram.vl.json │ ├── layer_histogram_global_mean.vl.json │ ├── layer_likert.vl.json │ ├── layer_likert_normalized.vl.json │ ├── layer_line_co2_concentration.vl.json │ ├── layer_line_co2_concentration_normalized.vl.json │ ├── layer_line_color_rule.vl.json │ ├── layer_line_datum_rule.vl.json │ ├── layer_line_datum_rule_datetime.vl.json │ ├── layer_line_errorband_2d_horizontal_borders_strokedash.vl.json │ ├── layer_line_errorband_2d_horizontal_borders_strokedash_normalized.vl.json │ ├── layer_line_errorband_ci.vl.json │ ├── layer_line_errorband_ci_normalized.vl.json │ ├── layer_line_errorband_pre_aggregated.vl.json │ ├── layer_line_errorband_pre_aggregated_normalized.vl.json │ ├── layer_line_mean_point_raw.vl.json │ ├── layer_line_rolling_mean_point_raw.vl.json │ ├── layer_line_rolling_mean_point_raw_normalized.vl.json │ ├── layer_line_window.vl.json │ ├── layer_line_window_normalized.vl.json │ ├── layer_overlay.vl.json │ ├── layer_overlay_normalized.vl.json │ ├── layer_point_errorbar_1d_horizontal.vl.json │ ├── layer_point_errorbar_1d_horizontal_normalized.vl.json │ ├── layer_point_errorbar_1d_vertical.vl.json │ ├── layer_point_errorbar_1d_vertical_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal.vl.json │ ├── layer_point_errorbar_2d_horizontal_ci.vl.json │ ├── layer_point_errorbar_2d_horizontal_ci_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_color_encoding.vl.json │ ├── layer_point_errorbar_2d_horizontal_color_encoding_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_custom_ticks.vl.json │ ├── layer_point_errorbar_2d_horizontal_custom_ticks_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_iqr.vl.json │ ├── layer_point_errorbar_2d_horizontal_iqr_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_stdev.vl.json │ ├── layer_point_errorbar_2d_horizontal_stdev_normalized.vl.json │ ├── layer_point_errorbar_2d_vertical.vl.json │ ├── layer_point_errorbar_2d_vertical_normalized.vl.json │ ├── layer_point_errorbar_ci.vl.json │ ├── layer_point_errorbar_ci_normalized.vl.json │ ├── layer_point_errorbar_pre_aggregated_asymmetric_error.vl.json │ ├── layer_point_errorbar_pre_aggregated_asymmetric_error_normalized.vl.json │ ├── layer_point_errorbar_pre_aggregated_symmetric_error.vl.json │ ├── layer_point_errorbar_pre_aggregated_symmetric_error_normalized.vl.json │ ├── layer_point_errorbar_pre_aggregated_upper_lower.vl.json │ ├── layer_point_errorbar_pre_aggregated_upper_lower_normalized.vl.json │ ├── layer_point_errorbar_stdev.vl.json │ ├── layer_point_errorbar_stdev_normalized.vl.json │ ├── layer_point_line_loess.vl.json │ ├── layer_point_line_regression.vl.json │ ├── layer_precipitation_mean.vl.json │ ├── layer_ranged_dot.vl.json │ ├── layer_ranged_dot_normalized.vl.json │ ├── layer_rect_extent.vl.json │ ├── layer_scatter_errorband_1D_stdev_global_mean.vl.json │ ├── layer_scatter_errorband_1D_stdev_global_mean_normalized.vl.json │ ├── layer_scatter_errorband_1d_stdev.vl.json │ ├── layer_scatter_errorband_1d_stdev_normalized.vl.json │ ├── layer_single_color.vl.json │ ├── layer_text_heatmap.vl.json │ ├── layer_text_heatmap_joinaggregate.vl.json │ ├── layer_text_heatmap_joinaggregate_normalized.vl.json │ ├── layer_text_heatmap_normalized.vl.json │ ├── layer_timeunit_rect.vl.json │ ├── line.vl.json │ ├── line_calculate.vl.json │ ├── line_color.vl.json │ ├── line_color_binned.vl.json │ ├── line_color_halo.vl.json │ ├── line_color_halo_normalized.vl.json │ ├── line_color_label.vl.json │ ├── line_color_label_normalized.vl.json │ ├── line_concat_facet.vl.json │ ├── line_concat_facet_normalized.vl.json │ ├── line_conditional_axis.vl.json │ ├── line_conditional_axis_config.vl.json │ ├── line_dashed_part.vl.json │ ├── line_detail.vl.json │ ├── line_domainminmax.vl.json │ ├── line_encoding_impute_keyvals.vl.json │ ├── line_encoding_impute_keyvals_sequence.vl.json │ ├── line_impute_frame.vl.json │ ├── line_impute_keyvals.vl.json │ ├── line_impute_method.vl.json │ ├── line_impute_transform_frame.vl.json │ ├── line_impute_transform_value.vl.json │ ├── line_impute_value.vl.json │ ├── line_inside_domain_using_clip.vl.json │ ├── line_inside_domain_using_transform.vl.json │ ├── line_max_year.vl.json │ ├── line_mean_month.vl.json │ ├── line_mean_year.vl.json │ ├── line_monotone.vl.json │ ├── line_month.vl.json │ ├── line_month_center_band.vl.json │ ├── line_outside_domain.vl.json │ ├── line_overlay.vl.json │ ├── line_overlay_normalized.vl.json │ ├── line_overlay_stroked.vl.json │ ├── line_overlay_stroked_normalized.vl.json │ ├── line_params.vl.json │ ├── line_quarter_legend.vl.json │ ├── line_shape_overlay.vl.json │ ├── line_shape_overlay_normalized.vl.json │ ├── line_skip_invalid.vl.json │ ├── line_skip_invalid_mid.vl.json │ ├── line_skip_invalid_mid_cap_square.vl.json │ ├── line_skip_invalid_mid_overlay.vl.json │ ├── line_skip_invalid_mid_overlay_normalized.vl.json │ ├── line_slope.vl.json │ ├── line_sort_axis.vl.json │ ├── line_step.vl.json │ ├── line_strokedash.vl.json │ ├── line_timestamp_domain.vl.json │ ├── line_timeunit_transform.vl.json │ ├── lookup.vl.json │ ├── nested_concat_align.vl.json │ ├── nested_concat_align_normalized.vl.json │ ├── parallel_coordinate.vl.json │ ├── parallel_coordinate_normalized.vl.json │ ├── point_1d.vl.json │ ├── point_1d_array.vl.json │ ├── point_2d.vl.json │ ├── point_2d_aggregate.vl.json │ ├── point_2d_array.vl.json │ ├── point_2d_array_named.vl.json │ ├── point_2d_tooltip.vl.json │ ├── point_2d_tooltip_data.vl.json │ ├── point_aggregate_detail.vl.json │ ├── point_angle_windvector.vl.json │ ├── point_background.vl.json │ ├── point_binned_color.vl.json │ ├── point_binned_opacity.vl.json │ ├── point_binned_size.vl.json │ ├── point_bubble.vl.json │ ├── point_color.vl.json │ ├── point_color_custom.vl.json │ ├── point_color_ordinal.vl.json │ ├── point_color_quantitative.vl.json │ ├── point_color_shape_constant.vl.json │ ├── point_color_with_shape.vl.json │ ├── point_colorramp_size.vl.json │ ├── point_diverging_color.vl.json │ ├── point_dot_timeunit_color.vl.json │ ├── point_filled.vl.json │ ├── point_href.vl.json │ ├── point_invalid_color.vl.json │ ├── point_log.vl.json │ ├── point_no_axis_domain_grid.vl.json │ ├── point_ordinal_color.vl.json │ ├── point_overlap.vl.json │ ├── point_params.vl.json │ ├── point_quantile_quantile.vl.json │ ├── point_scale_range_field.vl.json │ ├── point_shape_custom.vl.json │ ├── point_tooltip.vl.json │ ├── rect_binned_heatmap.vl.json │ ├── rect_heatmap.vl.json │ ├── rect_heatmap_weather.vl.json │ ├── rect_lasagna.vl.json │ ├── rect_mosaic_labelled.vl.json │ ├── rect_mosaic_labelled_with_offset.vl.json │ ├── rect_mosaic_simple.vl.json │ ├── rect_params.vl.json │ ├── repeat_child_layer.vl.json │ ├── repeat_child_layer_normalized.vl.json │ ├── repeat_histogram.vl.json │ ├── repeat_histogram_autosize.vl.json │ ├── repeat_histogram_autosize_normalized.vl.json │ ├── repeat_histogram_flights.vl.json │ ├── repeat_histogram_flights_normalized.vl.json │ ├── repeat_histogram_normalized.vl.json │ ├── repeat_independent_colors.vl.json │ ├── repeat_independent_colors_normalized.vl.json │ ├── repeat_layer.vl.json │ ├── repeat_layer_normalized.vl.json │ ├── repeat_line_weather.vl.json │ ├── repeat_line_weather_normalized.vl.json │ ├── repeat_splom.vl.json │ ├── repeat_splom_cars.vl.json │ ├── repeat_splom_cars_normalized.vl.json │ ├── repeat_splom_normalized.vl.json │ ├── rule_color_mean.vl.json │ ├── rule_extent.vl.json │ ├── rule_params.vl.json │ ├── sample_scatterplot.vl.json │ ├── scatter_image.vl.json │ ├── selection_bind_cylyr.vl.json │ ├── selection_bind_origin.vl.json │ ├── selection_brush_timeunit.vl.json │ ├── selection_clear_brush.vl.json │ ├── selection_composition_and.vl.json │ ├── selection_composition_or.vl.json │ ├── selection_concat.vl.json │ ├── selection_filter.vl.json │ ├── selection_filter_composition.vl.json │ ├── selection_heatmap.vl.json │ ├── selection_insert.vl.json │ ├── selection_interval_mark_style.vl.json │ ├── selection_layer.json │ ├── selection_layer_bar_month.vl.json │ ├── selection_multi_condition.vl.json │ ├── selection_project_binned_interval.vl.json │ ├── selection_project_interval.vl.json │ ├── selection_project_interval_x.vl.json │ ├── selection_project_interval_x_y.vl.json │ ├── selection_project_interval_y.vl.json │ ├── selection_project_multi.vl.json │ ├── selection_project_multi_cylinders.vl.json │ ├── selection_project_multi_cylinders_origin.vl.json │ ├── selection_project_multi_origin.vl.json │ ├── selection_project_single.vl.json │ ├── selection_project_single_cylinders.vl.json │ ├── selection_project_single_cylinders_origin.vl.json │ ├── selection_project_single_origin.vl.json │ ├── selection_resolution_global.vl.json │ ├── selection_resolution_global_normalized.vl.json │ ├── selection_resolution_intersect.vl.json │ ├── selection_resolution_intersect_normalized.vl.json │ ├── selection_resolution_union.vl.json │ ├── selection_resolution_union_normalized.vl.json │ ├── selection_toggle_altKey.vl.json │ ├── selection_toggle_altKey_shiftKey.vl.json │ ├── selection_toggle_shiftKey.vl.json │ ├── selection_translate_brush_drag.vl.json │ ├── selection_translate_brush_shift-drag.vl.json │ ├── selection_translate_scatterplot_drag.vl.json │ ├── selection_translate_scatterplot_shift-drag.vl.json │ ├── selection_type_interval.vl.json │ ├── selection_type_interval_invert.vl.json │ ├── selection_type_multi.vl.json │ ├── selection_type_single.vl.json │ ├── selection_type_single_dblclick.vl.json │ ├── selection_type_single_mouseover.vl.json │ ├── selection_zoom_brush_shift-wheel.vl.json │ ├── selection_zoom_brush_wheel.vl.json │ ├── selection_zoom_scatterplot_shift-wheel.vl.json │ ├── selection_zoom_scatterplot_wheel.vl.json │ ├── sequence_line.vl.json │ ├── sequence_line_fold.vl.json │ ├── square.vl.json │ ├── stacked_area.vl.json │ ├── stacked_area_normalize.vl.json │ ├── stacked_area_ordinal.vl.json │ ├── stacked_area_overlay.vl.json │ ├── stacked_area_overlay_normalized.vl.json │ ├── stacked_area_stream.vl.json │ ├── stacked_bar_1d.vl.json │ ├── stacked_bar_count.vl.json │ ├── stacked_bar_count_corner_radius_config.vl.json │ ├── stacked_bar_count_corner_radius_mark.vl.json │ ├── stacked_bar_count_corner_radius_mark_x.vl.json │ ├── stacked_bar_count_corner_radius_stroke.vl.json │ ├── stacked_bar_h.vl.json │ ├── stacked_bar_h_order.vl.json │ ├── stacked_bar_h_order_custom.vl.json │ ├── stacked_bar_normalize.vl.json │ ├── stacked_bar_population.vl.json │ ├── stacked_bar_population_transform.vl.json │ ├── stacked_bar_size.vl.json │ ├── stacked_bar_sum_opacity.vl.json │ ├── stacked_bar_unaggregate.vl.json │ ├── stacked_bar_v.vl.json │ ├── stacked_bar_weather.vl.json │ ├── test_aggregate_nested.vl.json │ ├── test_field_with_spaces.vl.json │ ├── test_minimal.json │ ├── test_single_point_color.vl.json │ ├── test_subobject.vl.json │ ├── test_subobject_missing.vl.json │ ├── test_subobject_nested.vl.json │ ├── text_format.vl.json │ ├── text_params.vl.json │ ├── text_params_normalized.vl.json │ ├── text_scatterplot_colored.vl.json │ ├── tick_dot.vl.json │ ├── tick_dot_thickness.vl.json │ ├── tick_sort.vl.json │ ├── tick_strip.vl.json │ ├── tick_strip_tick_band.vl.json │ ├── time_custom_step.vl.json │ ├── time_output_utc_scale.vl.json │ ├── time_output_utc_timeunit.vl.json │ ├── time_parse_local.vl.json │ ├── time_parse_utc.vl.json │ ├── time_parse_utc_format.vl.json │ ├── trail_color.vl.json │ ├── trellis_anscombe.vl.json │ ├── trellis_anscombe_normalized.vl.json │ ├── trellis_area.vl.json │ ├── trellis_area_normalized.vl.json │ ├── trellis_area_seattle.vl.json │ ├── trellis_area_sort_array.vl.json │ ├── trellis_area_sort_array_normalized.vl.json │ ├── trellis_bar.vl.json │ ├── trellis_bar_histogram.vl.json │ ├── trellis_bar_histogram_label_rotated.vl.json │ ├── trellis_bar_histogram_label_rotated_normalized.vl.json │ ├── trellis_bar_histogram_normalized.vl.json │ ├── trellis_bar_normalized.vl.json │ ├── trellis_barley.vl.json │ ├── trellis_barley_independent.vl.json │ ├── trellis_barley_independent_normalized.vl.json │ ├── trellis_barley_layer_median.vl.json │ ├── trellis_barley_layer_median_normalized.vl.json │ ├── trellis_barley_normalized.vl.json │ ├── trellis_column_year.vl.json │ ├── trellis_column_year_normalized.vl.json │ ├── trellis_cross_sort.vl.json │ ├── trellis_cross_sort_array.vl.json │ ├── trellis_line_quarter.vl.json │ ├── trellis_line_quarter_normalized.vl.json │ ├── trellis_row_column.vl.json │ ├── trellis_row_column_normalized.vl.json │ ├── trellis_scatter.vl.json │ ├── trellis_scatter_binned_row.vl.json │ ├── trellis_scatter_binned_row_normalized.vl.json │ ├── trellis_scatter_normalized.vl.json │ ├── trellis_scatter_small.vl.json │ ├── trellis_scatter_small_normalized.vl.json │ ├── trellis_selections.vl.json │ ├── trellis_selections_normalized.vl.json │ ├── trellis_stacked_bar.vl.json │ ├── trellis_stacked_bar_normalized.vl.json │ ├── vconcat_flatten.vl.json │ ├── vconcat_weather.vl.json │ ├── waterfall_chart.vl.json │ ├── waterfall_chart_normalized.vl.json │ ├── wheat_wages.vl.json │ ├── wheat_wages_normalized.vl.json │ ├── window_cumulative_running_average.vl.json │ ├── window_percent_of_total.vl.json │ ├── window_rank.vl.json │ ├── window_top_k.vl.json │ └── window_top_k_others.vl.json └── vega-lite │ ├── a_check.py │ ├── airport_connections.vl.json │ ├── airport_connections_normalized.vl.json │ ├── arc_color_mappings.vl.json │ ├── arc_donut.vl.json │ ├── arc_facet.vl.json │ ├── arc_facet_normalized.vl.json │ ├── arc_ordinal_theta.vl.json │ ├── arc_params.vl.json │ ├── arc_pie.vl.json │ ├── arc_pie_normalize_tooltip.vl.json │ ├── arc_pie_pyramid.vl.json │ ├── arc_radial.vl.json │ ├── arc_radial_histogram.vl.json │ ├── arc_radial_histogram_normalized.vl.json │ ├── arc_radial_normalized.vl.json │ ├── area.vl.json │ ├── area_cumulative_freq.vl.json │ ├── area_density.vl.json │ ├── area_density_facet.vl.json │ ├── area_density_facet_normalized.vl.json │ ├── area_density_stacked.vl.json │ ├── area_density_stacked_fold.vl.json │ ├── area_gradient.vl.json │ ├── area_gradient_normalized.vl.json │ ├── area_horizon.vl.json │ ├── area_horizon_normalized.vl.json │ ├── area_overlay.vl.json │ ├── area_overlay_normalized.vl.json │ ├── area_overlay_with_y2.vl.json │ ├── area_overlay_with_y2_normalized.vl.json │ ├── area_params.vl.json │ ├── area_temperature_range.vl.json │ ├── area_vertical.vl.json │ ├── argmin_spaces.vl.json │ ├── bar.vl.json │ ├── bar_1d.vl.json │ ├── bar_1d_binned.vl.json │ ├── bar_1d_default_size.vl.json │ ├── bar_1d_step_config.vl.json │ ├── bar_1d_temporal.vl.json │ ├── bar_aggregate.vl.json │ ├── bar_aggregate_count.vl.json │ ├── bar_aggregate_format.vl.json │ ├── bar_aggregate_size.vl.json │ ├── bar_aggregate_sort_by_encoding.vl.json │ ├── bar_aggregate_sort_mean.vl.json │ ├── bar_aggregate_transform.vl.json │ ├── bar_aggregate_vertical.vl.json │ ├── bar_argmax.vl.json │ ├── bar_argmax_transform.vl.json │ ├── bar_array_aggregate.vl.json │ ├── bar_axis_orient.vl.json │ ├── bar_axis_space_saving.vl.json │ ├── bar_binned_data.vl.json │ ├── bar_bullet_expr_bind.vl.json │ ├── bar_bullet_expr_bind_normalized.vl.json │ ├── bar_color_disabled_scale.vl.json │ ├── bar_column_fold.vl.json │ ├── bar_column_fold_normalized.vl.json │ ├── bar_column_pivot.vl.json │ ├── bar_config_no_zero.vl.json │ ├── bar_corner_radius_end.vl.json │ ├── bar_count_minimap.vl.json │ ├── bar_custom_sort_full.vl.json │ ├── bar_custom_sort_partial.vl.json │ ├── bar_custom_time_domain.vl.json │ ├── bar_default_tooltip_title_null.vl.json │ ├── bar_distinct.vl.json │ ├── bar_diverging_stack_population_pyramid.vl.json │ ├── bar_diverging_stack_transform.vl.json │ ├── bar_filter_calc.vl.json │ ├── bar_fit.vl.json │ ├── bar_gantt.vl.json │ ├── bar_gantt_config_no_zero.vl.json │ ├── bar_group_timeunit.vl.json │ ├── bar_grouped.vl.json │ ├── bar_grouped_custom_padding.vl.json │ ├── bar_grouped_errorbar.vl.json │ ├── bar_grouped_errorbar_normalized.vl.json │ ├── bar_grouped_facet.vl.json │ ├── bar_grouped_facet_independent_scale.vl.json │ ├── bar_grouped_facet_independent_scale_fixed_width.vl.json │ ├── bar_grouped_facet_independent_scale_fixed_width_normalized.vl.json │ ├── bar_grouped_facet_independent_scale_normalized.vl.json │ ├── bar_grouped_facet_normalized.vl.json │ ├── bar_grouped_fixed_width.vl.json │ ├── bar_grouped_horizontal.vl.json │ ├── bar_grouped_label.vl.json │ ├── bar_grouped_label_normalized.vl.json │ ├── bar_grouped_repeated.vl.json │ ├── bar_grouped_repeated_normalized.vl.json │ ├── bar_grouped_stacked.vl.json │ ├── bar_grouped_step_for_offset.vl.json │ ├── bar_grouped_step_for_position.vl.json │ ├── bar_grouped_thin.vl.json │ ├── bar_grouped_timeunit_yearweek.vl.json │ ├── bar_heatlane.vl.json │ ├── bar_heatlane_normalized.vl.json │ ├── bar_layered_transparent.vl.json │ ├── bar_layered_weather.vl.json │ ├── bar_layered_weather_normalized.vl.json │ ├── bar_month.vl.json │ ├── bar_month_band.vl.json │ ├── bar_month_band_config.vl.json │ ├── bar_month_temporal.vl.json │ ├── bar_month_temporal_initial.vl.json │ ├── bar_multi_values_per_categories.vl.json │ ├── bar_narrow_int_span.vl.json │ ├── bar_negative.vl.json │ ├── bar_negative_horizontal_label.vl.json │ ├── bar_negative_horizontal_label_normalized.vl.json │ ├── bar_params.vl.json │ ├── bar_params_bound.vl.json │ ├── bar_percent_of_total.vl.json │ ├── bar_q_qpow.vl.json │ ├── bar_qq_stack.vl.json │ ├── bar_qq_stack_horizontal.vl.json │ ├── bar_ranged_not_binned.vl.json │ ├── bar_size_default.vl.json │ ├── bar_size_explicit_bad.vl.json │ ├── bar_size_fit.vl.json │ ├── bar_size_responsive.vl.json │ ├── bar_size_responsive_normalized.vl.json │ ├── bar_size_step_small.vl.json │ ├── bar_sort_by_count.vl.json │ ├── bar_swap_axes.vl.json │ ├── bar_swap_custom.vl.json │ ├── bar_title.vl.json │ ├── bar_title_start.vl.json │ ├── bar_tooltip.vl.json │ ├── bar_tooltip_aggregate.vl.json │ ├── bar_tooltip_groupby.vl.json │ ├── bar_tooltip_multi.vl.json │ ├── bar_tooltip_title.vl.json │ ├── bar_x_offset_without_x_broken.vl.json │ ├── bar_yearmonth.vl.json │ ├── bar_yearmonth_custom_format.vl.json │ ├── boxplot_1D_horizontal.vl.json │ ├── boxplot_1D_horizontal_custom_mark.vl.json │ ├── boxplot_1D_horizontal_custom_mark_normalized.vl.json │ ├── boxplot_1D_horizontal_explicit.vl.json │ ├── boxplot_1D_horizontal_explicit_normalized.vl.json │ ├── boxplot_1D_horizontal_normalized.vl.json │ ├── boxplot_1D_invalid.vl.json │ ├── boxplot_1D_invalid_normalized.vl.json │ ├── boxplot_1D_vertical.vl.json │ ├── boxplot_1D_vertical_normalized.vl.json │ ├── boxplot_2D_horizontal.vl.json │ ├── boxplot_2D_horizontal_color_size.vl.json │ ├── boxplot_2D_horizontal_color_size_normalized.vl.json │ ├── boxplot_2D_horizontal_normalized.vl.json │ ├── boxplot_2D_vertical.vl.json │ ├── boxplot_2D_vertical_normalized.vl.json │ ├── boxplot_groupped.vl.json │ ├── boxplot_groupped_normalized.vl.json │ ├── boxplot_minmax_2D_horizontal.vl.json │ ├── boxplot_minmax_2D_horizontal_custom_midtick_color.vl.json │ ├── boxplot_minmax_2D_horizontal_custom_midtick_color_normalized.vl.json │ ├── boxplot_minmax_2D_horizontal_normalized.vl.json │ ├── boxplot_minmax_2D_vertical.vl.json │ ├── boxplot_minmax_2D_vertical_normalized.vl.json │ ├── boxplot_preaggregated.vl.json │ ├── boxplot_preaggregated_normalized.vl.json │ ├── boxplot_tooltip_aggregate.vl.json │ ├── boxplot_tooltip_aggregate_normalized.vl.json │ ├── boxplot_tooltip_not_aggregate.vl.json │ ├── boxplot_tooltip_not_aggregate_normalized.vl.json │ ├── brush_table.vl.json │ ├── circle.vl.json │ ├── circle_binned.vl.json │ ├── circle_binned_maxbins_2.vl.json │ ├── circle_binned_maxbins_20.vl.json │ ├── circle_binned_maxbins_5.vl.json │ ├── circle_bubble_health_income.vl.json │ ├── circle_custom_tick_labels.vl.json │ ├── circle_flatten.vl.json │ ├── circle_github_punchcard.vl.json │ ├── circle_labelangle_orient_signal.vl.json │ ├── circle_natural_disasters.vl.json │ ├── circle_opacity.vl.json │ ├── circle_scale_quantile.vl.json │ ├── circle_scale_quantize.vl.json │ ├── circle_scale_threshold.vl.json │ ├── circle_wilkinson_dotplot.vl.json │ ├── circle_wilkinson_dotplot_stacked.vl.json │ ├── concat_bar_layer_circle.vl.json │ ├── concat_bar_scales_discretize.vl.json │ ├── concat_bar_scales_discretize_2_cols.vl.json │ ├── concat_hover.vl.json │ ├── concat_hover_filter.vl.json │ ├── concat_hover_filter_normalized.vl.json │ ├── concat_layer_voyager_result.vl.json │ ├── concat_layer_voyager_result_normalized.vl.json │ ├── concat_marginal_histograms.vl.json │ ├── concat_population_pyramid.vl.json │ ├── concat_weather.vl.json │ ├── config_numberFormatType_test.vl.json │ ├── config_numberFormatType_test_normalized.vl.json │ ├── config_numberFormatType_tooltip.vl.json │ ├── connected_scatterplot.vl.json │ ├── connected_scatterplot_normalized.vl.json │ ├── dynamic_color_legend.vl.json │ ├── embedded_csv.vl.json │ ├── errorband_2d_horizontal_color_encoding.vl.json │ ├── errorband_2d_horizontal_color_encoding_normalized.vl.json │ ├── errorband_2d_vertical_borders.vl.json │ ├── errorband_2d_vertical_borders_normalized.vl.json │ ├── errorband_tooltip.vl.json │ ├── errorband_tooltip_normalized.vl.json │ ├── errorbar_2d_vertical_ticks.vl.json │ ├── errorbar_2d_vertical_ticks_normalized.vl.json │ ├── errorbar_aggregate.vl.json │ ├── errorbar_horizontal_aggregate.vl.json │ ├── errorbar_tooltip.vl.json │ ├── errorbar_tooltip_normalized.vl.json │ ├── facet_bullet.vl.json │ ├── facet_bullet_normalized.vl.json │ ├── facet_column_facet_column_point_future.vl.json │ ├── facet_column_facet_row_point_future.vl.json │ ├── facet_cross_independent_scale.vl.json │ ├── facet_custom.vl.json │ ├── facet_custom_header.vl.json │ ├── facet_custom_header_normalized.vl.json │ ├── facet_custom_normalized.vl.json │ ├── facet_grid_bar.vl.json │ ├── facet_grid_bar_normalized.vl.json │ ├── facet_independent_scale.vl.json │ ├── facet_independent_scale_layer_broken.vl.json │ ├── facet_row_facet_row_point_future.vl.json │ ├── geo_choropleth.vl.json │ ├── geo_circle.vl.json │ ├── geo_constant_value.vl.json │ ├── geo_constant_value_normalized.vl.json │ ├── geo_custom_projection.vl.json │ ├── geo_custom_projection_normalized.vl.json │ ├── geo_graticule.vl.json │ ├── geo_graticule_object.vl.json │ ├── geo_layer.vl.json │ ├── geo_layer_line_london.vl.json │ ├── geo_line.vl.json │ ├── geo_params_projections.vl.json │ ├── geo_point.vl.json │ ├── geo_repeat.vl.json │ ├── geo_repeat_normalized.vl.json │ ├── geo_rule.vl.json │ ├── geo_sphere.vl.json │ ├── geo_sphere_normalized.vl.json │ ├── geo_text.vl.json │ ├── geo_text_normalized.vl.json │ ├── geo_trellis.vl.json │ ├── geo_trellis_normalized.vl.json │ ├── hconcat_weather.vl.json │ ├── histogram.vl.json │ ├── histogram_bin_change.vl.json │ ├── histogram_bin_spacing.vl.json │ ├── histogram_bin_spacing_reverse.vl.json │ ├── histogram_bin_transform.vl.json │ ├── histogram_invalid_null.vl.json │ ├── histogram_log.vl.json │ ├── histogram_no_spacing.vl.json │ ├── histogram_nonlinear.vl.json │ ├── histogram_ordinal.vl.json │ ├── histogram_ordinal_sort.vl.json │ ├── histogram_rel_freq.vl.json │ ├── histogram_reverse.vl.json │ ├── interactive_1d_geo_brush.vl.json │ ├── interactive_1d_geo_brush_normalized.vl.json │ ├── interactive_airport_crossfilter.vl.json │ ├── interactive_airport_crossfilter_normalized.vl.json │ ├── interactive_area_brush.vl.json │ ├── interactive_area_brush_normalized.vl.json │ ├── interactive_bar_select_highlight.vl.json │ ├── interactive_bin_extent.vl.json │ ├── interactive_bin_extent_bottom.vl.json │ ├── interactive_brush.vl.json │ ├── interactive_concat_layer.vl.json │ ├── interactive_dashboard_europe_pop.vl.json │ ├── interactive_geo_earthquakes.vl.json │ ├── interactive_geo_earthquakes_normalized.vl.json │ ├── interactive_global_development.vl.json │ ├── interactive_global_development_normalized.vl.json │ ├── interactive_histogram_full_height_hover.vl.json │ ├── interactive_index_chart.vl.json │ ├── interactive_index_chart_normalized.vl.json │ ├── interactive_layered_crossfilter.vl.json │ ├── interactive_layered_crossfilter_discrete.vl.json │ ├── interactive_layered_crossfilter_discrete_normalized.vl.json │ ├── interactive_layered_crossfilter_normalized.vl.json │ ├── interactive_legend.vl.json │ ├── interactive_legend_dblclick.vl.json │ ├── interactive_line_brush_cursor.vl.json │ ├── interactive_line_hover.vl.json │ ├── interactive_line_hover_normalized.vl.json │ ├── interactive_line_point_hover.vl.json │ ├── interactive_line_point_hover_normalized.vl.json │ ├── interactive_multi_line_label.vl.json │ ├── interactive_multi_line_label_normalized.vl.json │ ├── interactive_multi_line_pivot_tooltip.vl.json │ ├── interactive_multi_line_pivot_tooltip_normalized.vl.json │ ├── interactive_multi_line_tooltip.vl.json │ ├── interactive_multi_line_tooltip_normalized.vl.json │ ├── interactive_overview_detail.vl.json │ ├── interactive_paintbrush.vl.json │ ├── interactive_paintbrush_color.vl.json │ ├── interactive_paintbrush_color_nearest.vl.json │ ├── interactive_paintbrush_interval.vl.json │ ├── interactive_paintbrush_simple_false.vl.json │ ├── interactive_paintbrush_simple_true.vl.json │ ├── interactive_panzoom_splom.vl.json │ ├── interactive_panzoom_splom_normalized.vl.json │ ├── interactive_panzoom_vconcat_shared.vl.json │ ├── interactive_point_init.vl.json │ ├── interactive_query_widgets.vl.json │ ├── interactive_seattle_weather.vl.json │ ├── interactive_splom.vl.json │ ├── interactive_splom_normalized.vl.json │ ├── interactive_stocks_nearest_index.vl.json │ ├── interactive_stocks_nearest_index_normalized.vl.json │ ├── isotype_bar_chart.vl.json │ ├── isotype_bar_chart_emoji.vl.json │ ├── isotype_bar_chart_emoji_normalized.vl.json │ ├── isotype_bar_chart_normalized.vl.json │ ├── isotype_grid.vl.json │ ├── joinaggregate_mean_difference.vl.json │ ├── joinaggregate_mean_difference_by_year.vl.json │ ├── joinaggregate_percent_of_total.vl.json │ ├── joinaggregate_residual_graph.vl.json │ ├── layer_arc_label.vl.json │ ├── layer_arc_label_normalized.vl.json │ ├── layer_bar_annotations.vl.json │ ├── layer_bar_annotations_normalized.vl.json │ ├── layer_bar_circle_grouped.vl.json │ ├── layer_bar_circle_grouped_normalized.vl.json │ ├── layer_bar_fruit.vl.json │ ├── layer_bar_fruit_normalized.vl.json │ ├── layer_bar_grouped_line_ungrouped.vl.json │ ├── layer_bar_labels.vl.json │ ├── layer_bar_labels_grey.vl.json │ ├── layer_bar_labels_grey_normalized.vl.json │ ├── layer_bar_labels_normalized.vl.json │ ├── layer_bar_labels_style.vl.json │ ├── layer_bar_line.vl.json │ ├── layer_bar_line_union.vl.json │ ├── layer_bar_month.vl.json │ ├── layer_bar_tick_datum_grouped.vl.json │ ├── layer_bar_tick_datum_grouped_normalized.vl.json │ ├── layer_boxplot_circle.vl.json │ ├── layer_boxplot_circle_normalized.vl.json │ ├── layer_candlestick.vl.json │ ├── layer_candlestick_normalized.vl.json │ ├── layer_circle_independent_color.vl.json │ ├── layer_color_legend_left.vl.json │ ├── layer_color_legend_left_normalized.vl.json │ ├── layer_cumulative_histogram.vl.json │ ├── layer_cumulative_histogram_normalized.vl.json │ ├── layer_dual_axis.vl.json │ ├── layer_dual_axis_normalized.vl.json │ ├── layer_falkensee.vl.json │ ├── layer_histogram.vl.json │ ├── layer_histogram_global_mean.vl.json │ ├── layer_likert.vl.json │ ├── layer_likert_normalized.vl.json │ ├── layer_line_co2_concentration.vl.json │ ├── layer_line_co2_concentration_normalized.vl.json │ ├── layer_line_color_rule.vl.json │ ├── layer_line_datum_rule.vl.json │ ├── layer_line_datum_rule_datetime.vl.json │ ├── layer_line_errorband_2d_horizontal_borders_strokedash.vl.json │ ├── layer_line_errorband_2d_horizontal_borders_strokedash_normalized.vl.json │ ├── layer_line_errorband_ci.vl.json │ ├── layer_line_errorband_ci_normalized.vl.json │ ├── layer_line_errorband_pre_aggregated.vl.json │ ├── layer_line_errorband_pre_aggregated_normalized.vl.json │ ├── layer_line_mean_point_raw.vl.json │ ├── layer_line_rolling_mean_point_raw.vl.json │ ├── layer_line_rolling_mean_point_raw_normalized.vl.json │ ├── layer_line_window.vl.json │ ├── layer_line_window_normalized.vl.json │ ├── layer_overlay.vl.json │ ├── layer_overlay_normalized.vl.json │ ├── layer_point_errorbar_1d_horizontal.vl.json │ ├── layer_point_errorbar_1d_horizontal_normalized.vl.json │ ├── layer_point_errorbar_1d_vertical.vl.json │ ├── layer_point_errorbar_1d_vertical_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal.vl.json │ ├── layer_point_errorbar_2d_horizontal_ci.vl.json │ ├── layer_point_errorbar_2d_horizontal_ci_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_color_encoding.vl.json │ ├── layer_point_errorbar_2d_horizontal_color_encoding_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_custom_ticks.vl.json │ ├── layer_point_errorbar_2d_horizontal_custom_ticks_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_iqr.vl.json │ ├── layer_point_errorbar_2d_horizontal_iqr_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_normalized.vl.json │ ├── layer_point_errorbar_2d_horizontal_stdev.vl.json │ ├── layer_point_errorbar_2d_horizontal_stdev_normalized.vl.json │ ├── layer_point_errorbar_2d_vertical.vl.json │ ├── layer_point_errorbar_2d_vertical_normalized.vl.json │ ├── layer_point_errorbar_ci.vl.json │ ├── layer_point_errorbar_ci_normalized.vl.json │ ├── layer_point_errorbar_pre_aggregated_asymmetric_error.vl.json │ ├── layer_point_errorbar_pre_aggregated_asymmetric_error_normalized.vl.json │ ├── layer_point_errorbar_pre_aggregated_symmetric_error.vl.json │ ├── layer_point_errorbar_pre_aggregated_symmetric_error_normalized.vl.json │ ├── layer_point_errorbar_pre_aggregated_upper_lower.vl.json │ ├── layer_point_errorbar_pre_aggregated_upper_lower_normalized.vl.json │ ├── layer_point_errorbar_stdev.vl.json │ ├── layer_point_errorbar_stdev_normalized.vl.json │ ├── layer_point_line_loess.vl.json │ ├── layer_point_line_regression.vl.json │ ├── layer_precipitation_mean.vl.json │ ├── layer_ranged_dot.vl.json │ ├── layer_ranged_dot_normalized.vl.json │ ├── layer_rect_extent.vl.json │ ├── layer_scatter_errorband_1D_stdev_global_mean.vl.json │ ├── layer_scatter_errorband_1D_stdev_global_mean_normalized.vl.json │ ├── layer_scatter_errorband_1d_stdev.vl.json │ ├── layer_scatter_errorband_1d_stdev_normalized.vl.json │ ├── layer_single_color.vl.json │ ├── layer_text_heatmap.vl.json │ ├── layer_text_heatmap_joinaggregate.vl.json │ ├── layer_text_heatmap_joinaggregate_normalized.vl.json │ ├── layer_text_heatmap_normalized.vl.json │ ├── layer_timeunit_rect.vl.json │ ├── line.vl.json │ ├── line_bump.vl.json │ ├── line_bump_normalized.vl.json │ ├── line_calculate.vl.json │ ├── line_color.vl.json │ ├── line_color_binned.vl.json │ ├── line_color_halo.vl.json │ ├── line_color_halo_normalized.vl.json │ ├── line_color_label.vl.json │ ├── line_color_label_normalized.vl.json │ ├── line_concat_facet.vl.json │ ├── line_concat_facet_normalized.vl.json │ ├── line_conditional_axis.vl.json │ ├── line_conditional_axis_config.vl.json │ ├── line_dashed_part.vl.json │ ├── line_detail.vl.json │ ├── line_domainminmax.vl.json │ ├── line_encoding_impute_keyvals.vl.json │ ├── line_encoding_impute_keyvals_sequence.vl.json │ ├── line_impute_frame.vl.json │ ├── line_impute_keyvals.vl.json │ ├── line_impute_method.vl.json │ ├── line_impute_transform_frame.vl.json │ ├── line_impute_transform_value.vl.json │ ├── line_impute_value.vl.json │ ├── line_inside_domain_using_clip.vl.json │ ├── line_inside_domain_using_transform.vl.json │ ├── line_max_year.vl.json │ ├── line_mean_month.vl.json │ ├── line_mean_year.vl.json │ ├── line_monotone.vl.json │ ├── line_month.vl.json │ ├── line_month_center_band.vl.json │ ├── line_narrow_2year_span.vl.json │ ├── line_narrow_year_span.vl.json │ ├── line_narrow_yearmonth_span.vl.json │ ├── line_narrow_yearmonth_span_normalized.vl.json │ ├── line_narrow_yearquarter_span.vl.json │ ├── line_outside_domain.vl.json │ ├── line_overlay.vl.json │ ├── line_overlay_normalized.vl.json │ ├── line_overlay_stroked.vl.json │ ├── line_overlay_stroked_normalized.vl.json │ ├── line_params.vl.json │ ├── line_quarter_legend.vl.json │ ├── line_shape_overlay.vl.json │ ├── line_shape_overlay_normalized.vl.json │ ├── line_skip_invalid.vl.json │ ├── line_skip_invalid_mid.vl.json │ ├── line_skip_invalid_mid_cap_square.vl.json │ ├── line_skip_invalid_mid_overlay.vl.json │ ├── line_skip_invalid_mid_overlay_normalized.vl.json │ ├── line_slope.vl.json │ ├── line_sort_axis.vl.json │ ├── line_step.vl.json │ ├── line_strokedash.vl.json │ ├── line_timestamp_domain.vl.json │ ├── line_timeunit_transform.vl.json │ ├── lookup.vl.json │ ├── nested_concat_align.vl.json │ ├── nested_concat_align_normalized.vl.json │ ├── parallel_coordinate.vl.json │ ├── parallel_coordinate_normalized.vl.json │ ├── param_expr.vl.json │ ├── param_search_input.vl.json │ ├── point_1d.vl.json │ ├── point_1d_array.vl.json │ ├── point_2d.vl.json │ ├── point_2d_aggregate.vl.json │ ├── point_2d_array.vl.json │ ├── point_2d_array_named.vl.json │ ├── point_2d_config_no_zero.vl.json │ ├── point_2d_tooltip.vl.json │ ├── point_2d_tooltip_data.vl.json │ ├── point_aggregate_detail.vl.json │ ├── point_angle_windvector.vl.json │ ├── point_background.vl.json │ ├── point_binned_color.vl.json │ ├── point_binned_opacity.vl.json │ ├── point_binned_size.vl.json │ ├── point_bubble.vl.json │ ├── point_color.vl.json │ ├── point_color_custom.vl.json │ ├── point_color_ordinal.vl.json │ ├── point_color_quantitative.vl.json │ ├── point_color_shape_constant.vl.json │ ├── point_color_with_shape.vl.json │ ├── point_colorramp_size.vl.json │ ├── point_diverging_color.vl.json │ ├── point_dot_timeunit_color.vl.json │ ├── point_filled.vl.json │ ├── point_grouped.vl.json │ ├── point_href.vl.json │ ├── point_invalid_color.vl.json │ ├── point_log.vl.json │ ├── point_no_axis_domain_grid.vl.json │ ├── point_offset_random.vl.json │ ├── point_ordinal_bin_offset_random.vl.json │ ├── point_ordinal_color.vl.json │ ├── point_overlap.vl.json │ ├── point_params.vl.json │ ├── point_quantile_quantile.vl.json │ ├── point_scale_range_field.vl.json │ ├── point_shape_custom.vl.json │ ├── point_tooltip.vl.json │ ├── rect_binned_heatmap.vl.json │ ├── rect_heatmap.vl.json │ ├── rect_heatmap_weather.vl.json │ ├── rect_lasagna.vl.json │ ├── rect_mosaic_labelled.vl.json │ ├── rect_mosaic_labelled_with_offset.vl.json │ ├── rect_mosaic_simple.vl.json │ ├── rect_params.vl.json │ ├── repeat_child_layer.vl.json │ ├── repeat_child_layer_normalized.vl.json │ ├── repeat_histogram.vl.json │ ├── repeat_histogram_autosize.vl.json │ ├── repeat_histogram_autosize_normalized.vl.json │ ├── repeat_histogram_flights.vl.json │ ├── repeat_histogram_flights_normalized.vl.json │ ├── repeat_histogram_normalized.vl.json │ ├── repeat_independent_colors.vl.json │ ├── repeat_independent_colors_normalized.vl.json │ ├── repeat_layer.vl.json │ ├── repeat_layer_normalized.vl.json │ ├── repeat_layer_size.json │ ├── repeat_line_weather.vl.json │ ├── repeat_line_weather_normalized.vl.json │ ├── repeat_splom.vl.json │ ├── repeat_splom_cars.vl.json │ ├── repeat_splom_cars_normalized.vl.json │ ├── repeat_splom_normalized.vl.json │ ├── rule_color_mean.vl.json │ ├── rule_extent.vl.json │ ├── rule_params.vl.json │ ├── sample_scatterplot.vl.json │ ├── scatter_image.vl.json │ ├── selection_bind_cylyr.vl.json │ ├── selection_bind_origin.vl.json │ ├── selection_brush_timeunit.vl.json │ ├── selection_clear_brush.vl.json │ ├── selection_composition_and.vl.json │ ├── selection_composition_or.vl.json │ ├── selection_concat.vl.json │ ├── selection_filter.vl.json │ ├── selection_filter_composition.vl.json │ ├── selection_filter_false.vl.json │ ├── selection_filter_true.vl.json │ ├── selection_heatmap.vl.json │ ├── selection_insert.vl.json │ ├── selection_interval_mark_style.vl.json │ ├── selection_layer.vl.json │ ├── selection_layer_bar_month.vl.json │ ├── selection_multi_condition.vl.json │ ├── selection_project_binned_interval.vl.json │ ├── selection_project_interval.vl.json │ ├── selection_project_interval_x.vl.json │ ├── selection_project_interval_x_y.vl.json │ ├── selection_project_interval_y.vl.json │ ├── selection_project_multi.vl.json │ ├── selection_project_multi_cylinders.vl.json │ ├── selection_project_multi_cylinders_origin.vl.json │ ├── selection_project_multi_origin.vl.json │ ├── selection_project_single.vl.json │ ├── selection_project_single_cylinders.vl.json │ ├── selection_project_single_cylinders_origin.vl.json │ ├── selection_project_single_origin.vl.json │ ├── selection_resolution_global.vl.json │ ├── selection_resolution_global_normalized.vl.json │ ├── selection_resolution_intersect.vl.json │ ├── selection_resolution_intersect_normalized.vl.json │ ├── selection_resolution_union.vl.json │ ├── selection_resolution_union_normalized.vl.json │ ├── selection_toggle_altKey.vl.json │ ├── selection_toggle_altKey_shiftKey.vl.json │ ├── selection_toggle_shiftKey.vl.json │ ├── selection_translate_brush_drag.vl.json │ ├── selection_translate_brush_shift-drag.vl.json │ ├── selection_translate_scatterplot_drag.vl.json │ ├── selection_translate_scatterplot_shift-drag.vl.json │ ├── selection_type_interval.vl.json │ ├── selection_type_interval_invert.vl.json │ ├── selection_type_point.vl.json │ ├── selection_type_single_dblclick.vl.json │ ├── selection_type_single_mouseover.vl.json │ ├── selection_zoom_brush_shift-wheel.vl.json │ ├── selection_zoom_brush_wheel.vl.json │ ├── selection_zoom_scatterplot_shift-wheel.vl.json │ ├── selection_zoom_scatterplot_wheel.vl.json │ ├── sequence_line.vl.json │ ├── sequence_line_fold.vl.json │ ├── square.vl.json │ ├── stacked_area.vl.json │ ├── stacked_area_normalize.vl.json │ ├── stacked_area_ordinal.vl.json │ ├── stacked_area_overlay.vl.json │ ├── stacked_area_overlay_normalized.vl.json │ ├── stacked_area_stream.vl.json │ ├── stacked_bar_1d.vl.json │ ├── stacked_bar_count.vl.json │ ├── stacked_bar_count_corner_radius_config.vl.json │ ├── stacked_bar_count_corner_radius_mark.vl.json │ ├── stacked_bar_count_corner_radius_mark_x.vl.json │ ├── stacked_bar_count_corner_radius_stroke.vl.json │ ├── stacked_bar_h.vl.json │ ├── stacked_bar_h_normalized_labeled.vl.json │ ├── stacked_bar_h_normalized_labeled_normalized.vl.json │ ├── stacked_bar_h_order.vl.json │ ├── stacked_bar_h_order_custom.vl.json │ ├── stacked_bar_normalize.vl.json │ ├── stacked_bar_population.vl.json │ ├── stacked_bar_population_transform.vl.json │ ├── stacked_bar_size.vl.json │ ├── stacked_bar_sum_opacity.vl.json │ ├── stacked_bar_unaggregate.vl.json │ ├── stacked_bar_v.vl.json │ ├── stacked_bar_v_ascending.vl.json │ ├── stacked_bar_weather.vl.json │ ├── test_aggregate_nested.vl.json │ ├── test_field_with_spaces.vl.json │ ├── test_minimal.json │ ├── test_single_point_color.vl.json │ ├── test_subobject.vl.json │ ├── test_subobject_missing.vl.json │ ├── test_subobject_nested.vl.json │ ├── text_format.vl.json │ ├── text_params.vl.json │ ├── text_params_normalized.vl.json │ ├── text_scatterplot_colored.vl.json │ ├── text_tooltip_image.vl.json │ ├── tick_dot.vl.json │ ├── tick_dot_thickness.vl.json │ ├── tick_grouped.vl.json │ ├── tick_sort.vl.json │ ├── tick_strip.vl.json │ ├── tick_strip_tick_band.vl.json │ ├── time_custom_step.vl.json │ ├── time_output_utc_scale.vl.json │ ├── time_output_utc_timeunit.vl.json │ ├── time_parse_local.vl.json │ ├── time_parse_utc.vl.json │ ├── time_parse_utc_format.vl.json │ ├── trail_color.vl.json │ ├── trail_comet.vl.json │ ├── trail_comet_normalized.vl.json │ ├── trellis_anscombe.vl.json │ ├── trellis_anscombe_normalized.vl.json │ ├── trellis_area.vl.json │ ├── trellis_area_normalized.vl.json │ ├── trellis_area_seattle.vl.json │ ├── trellis_area_sort_array.vl.json │ ├── trellis_area_sort_array_normalized.vl.json │ ├── trellis_bar.vl.json │ ├── trellis_bar_histogram.vl.json │ ├── trellis_bar_histogram_label_rotated.vl.json │ ├── trellis_bar_histogram_label_rotated_normalized.vl.json │ ├── trellis_bar_histogram_normalized.vl.json │ ├── trellis_bar_no_header.vl.json │ ├── trellis_bar_no_header_normalized.vl.json │ ├── trellis_bar_normalized.vl.json │ ├── trellis_barley.vl.json │ ├── trellis_barley_independent.vl.json │ ├── trellis_barley_independent_normalized.vl.json │ ├── trellis_barley_layer_median.vl.json │ ├── trellis_barley_layer_median_normalized.vl.json │ ├── trellis_barley_normalized.vl.json │ ├── trellis_column_year.vl.json │ ├── trellis_column_year_normalized.vl.json │ ├── trellis_cross_sort.vl.json │ ├── trellis_cross_sort_array.vl.json │ ├── trellis_line_quarter.vl.json │ ├── trellis_line_quarter_normalized.vl.json │ ├── trellis_row_column.vl.json │ ├── trellis_row_column_normalized.vl.json │ ├── trellis_scatter.vl.json │ ├── trellis_scatter_binned_row.vl.json │ ├── trellis_scatter_binned_row_normalized.vl.json │ ├── trellis_scatter_normalized.vl.json │ ├── trellis_scatter_small.vl.json │ ├── trellis_scatter_small_normalized.vl.json │ ├── trellis_selections.vl.json │ ├── trellis_selections_normalized.vl.json │ ├── trellis_stacked_bar.vl.json │ ├── trellis_stacked_bar_normalized.vl.json │ ├── vconcat_flatten.vl.json │ ├── vconcat_weather.vl.json │ ├── waterfall_chart.vl.json │ ├── waterfall_chart_normalized.vl.json │ ├── wheat_wages.vl.json │ ├── wheat_wages_normalized.vl.json │ ├── window_cumulative_running_average.vl.json │ ├── window_rank.vl.json │ ├── window_top_k.vl.json │ └── window_top_k_others.vl.json ├── docs ├── data │ ├── chart │ │ ├── vl_0000.vl.json │ │ ├── vl_0001.vl.json │ │ ├── vl_0002.vl.json │ │ ├── vl_0003.vl.json │ │ ├── vl_0004.vl.json │ │ ├── vl_0005.vl.json │ │ ├── vl_0006.vl.json │ │ ├── vl_0007.vl.json │ │ ├── vl_0008.vl.json │ │ ├── vl_0009.vl.json │ │ ├── vl_0010.vl.json │ │ ├── vl_0011.vl.json │ │ ├── vl_0012.vl.json │ │ ├── vl_0013.vl.json │ │ ├── vl_0014.vl.json │ │ ├── vl_0015.vl.json │ │ ├── vl_0016.vl.json │ │ ├── vl_0017.vl.json │ │ ├── vl_0018.vl.json │ │ ├── vl_0019.vl.json │ │ ├── vl_0020.vl.json │ │ ├── vl_0021.vl.json │ │ ├── vl_0022.vl.json │ │ ├── vl_0023.vl.json │ │ ├── vl_0024.vl.json │ │ ├── vl_0025.vl.json │ │ ├── vl_0026.vl.json │ │ ├── vl_0027.vl.json │ │ ├── vl_0028.vl.json │ │ ├── vl_0029.vl.json │ │ ├── vl_0030.vl.json │ │ ├── vl_0031.vl.json │ │ ├── vl_0032.vl.json │ │ ├── vl_0033.vl.json │ │ ├── vl_0034.vl.json │ │ ├── vl_0035.vl.json │ │ ├── vl_0036.vl.json │ │ ├── vl_0037.vl.json │ │ ├── vl_0038.vl.json │ │ ├── vl_0039.vl.json │ │ ├── vl_0040.vl.json │ │ ├── vl_0041.vl.json │ │ ├── vl_0042.vl.json │ │ ├── vl_0043.vl.json │ │ ├── vl_0044.vl.json │ │ ├── vl_0045.vl.json │ │ ├── vl_0046.vl.json │ │ ├── vl_0047.vl.json │ │ ├── vl_0048.vl.json │ │ ├── vl_0049.vl.json │ │ ├── vl_0050.vl.json │ │ ├── vl_0051.vl.json │ │ ├── vl_0052.vl.json │ │ ├── vl_0053.vl.json │ │ ├── vl_0054.vl.json │ │ ├── vl_0055.vl.json │ │ ├── vl_0056.vl.json │ │ ├── vl_0057.vl.json │ │ ├── vl_0058.vl.json │ │ ├── vl_0059.vl.json │ │ ├── vl_0060.vl.json │ │ ├── vl_0061.vl.json │ │ ├── vl_0062.vl.json │ │ ├── vl_0063.vl.json │ │ ├── vl_0064.vl.json │ │ ├── vl_0065.vl.json │ │ ├── vl_0066.vl.json │ │ ├── vl_0067.vl.json │ │ ├── vl_0068.vl.json │ │ ├── vl_0069.vl.json │ │ ├── vl_0070.vl.json │ │ ├── vl_0071.vl.json │ │ ├── vl_0072.vl.json │ │ ├── vl_0073.vl.json │ │ ├── vl_0074.vl.json │ │ ├── vl_0075.vl.json │ │ ├── vl_0076.vl.json │ │ ├── vl_0077.vl.json │ │ ├── vl_0078.vl.json │ │ ├── vl_0079.vl.json │ │ ├── vl_0080.vl.json │ │ ├── vl_0081.vl.json │ │ ├── vl_0082.vl.json │ │ ├── vl_0083.vl.json │ │ ├── vl_0084.vl.json │ │ ├── vl_0085.vl.json │ │ ├── vl_0086.vl.json │ │ ├── vl_0087.vl.json │ │ ├── vl_0088.vl.json │ │ ├── vl_0089.vl.json │ │ ├── vl_0090.vl.json │ │ ├── vl_0091.vl.json │ │ ├── vl_0092.vl.json │ │ ├── vl_0093.vl.json │ │ ├── vl_0094.vl.json │ │ ├── vl_0095.vl.json │ │ ├── vl_0096.vl.json │ │ ├── vl_0097.vl.json │ │ ├── vl_0098.vl.json │ │ ├── vl_0099.vl.json │ │ ├── vl_0100.vl.json │ │ ├── vl_0101.vl.json │ │ ├── vl_0102.vl.json │ │ ├── vl_0103.vl.json │ │ ├── vl_0104.vl.json │ │ ├── vl_0105.vl.json │ │ ├── vl_0106.vl.json │ │ ├── vl_0107.vl.json │ │ ├── vl_0108.vl.json │ │ ├── vl_0109.vl.json │ │ ├── vl_0110.vl.json │ │ ├── vl_0111.vl.json │ │ ├── vl_0112.vl.json │ │ ├── vl_0113.vl.json │ │ ├── vl_0114.vl.json │ │ ├── vl_0115.vl.json │ │ ├── vl_0116.vl.json │ │ ├── vl_0117.vl.json │ │ ├── vl_0118.vl.json │ │ ├── vl_0119.vl.json │ │ ├── vl_0120.vl.json │ │ ├── vl_0121.vl.json │ │ ├── vl_0122.vl.json │ │ ├── vl_0123.vl.json │ │ ├── vl_0124.vl.json │ │ ├── vl_0125.vl.json │ │ ├── vl_0126.vl.json │ │ ├── vl_0127.vl.json │ │ ├── vl_0128.vl.json │ │ ├── vl_0129.vl.json │ │ ├── vl_0130.vl.json │ │ ├── vl_0131.vl.json │ │ ├── vl_0132.vl.json │ │ ├── vl_0133.vl.json │ │ ├── vl_0134.vl.json │ │ ├── vl_0135.vl.json │ │ ├── vl_0136.vl.json │ │ ├── vl_0137.vl.json │ │ ├── vl_0138.vl.json │ │ ├── vl_0139.vl.json │ │ ├── vl_0140.vl.json │ │ ├── vl_0141.vl.json │ │ ├── vl_0142.vl.json │ │ ├── vl_0143.vl.json │ │ ├── vl_0144.vl.json │ │ ├── vl_0145.vl.json │ │ ├── vl_0146.vl.json │ │ ├── vl_0147.vl.json │ │ ├── vl_0148.vl.json │ │ ├── vl_0149.vl.json │ │ ├── vl_0150.vl.json │ │ ├── vl_0151.vl.json │ │ ├── vl_0152.vl.json │ │ ├── vl_0153.vl.json │ │ ├── vl_0154.vl.json │ │ ├── vl_0155.vl.json │ │ ├── vl_0156.vl.json │ │ ├── vl_0157.vl.json │ │ ├── vl_0158.vl.json │ │ ├── vl_0159.vl.json │ │ ├── vl_0160.vl.json │ │ ├── vl_0161.vl.json │ │ ├── vl_0162.vl.json │ │ ├── vl_0163.vl.json │ │ ├── vl_0164.vl.json │ │ ├── vl_0165.vl.json │ │ ├── vl_0166.vl.json │ │ ├── vl_0167.vl.json │ │ ├── vl_0168.vl.json │ │ ├── vl_0169.vl.json │ │ ├── vl_0170.vl.json │ │ ├── vl_0171.vl.json │ │ ├── vl_0172.vl.json │ │ ├── vl_0173.vl.json │ │ ├── vl_0174.vl.json │ │ ├── vl_0175.vl.json │ │ ├── vl_0176.vl.json │ │ ├── vl_0177.vl.json │ │ ├── vl_0178.vl.json │ │ ├── vl_0179.vl.json │ │ ├── vl_0180.vl.json │ │ ├── vl_0181.vl.json │ │ ├── vl_0182.vl.json │ │ ├── vl_0183.vl.json │ │ ├── vl_0184.vl.json │ │ ├── vl_0185.vl.json │ │ ├── vl_0186.vl.json │ │ ├── vl_0187.vl.json │ │ ├── vl_0188.vl.json │ │ ├── vl_0189.vl.json │ │ ├── vl_0190.vl.json │ │ ├── vl_0191.vl.json │ │ ├── vl_0192.vl.json │ │ ├── vl_0193.vl.json │ │ ├── vl_0194.vl.json │ │ ├── vl_0195.vl.json │ │ ├── vl_0196.vl.json │ │ ├── vl_0197.vl.json │ │ ├── vl_0198.vl.json │ │ ├── vl_0199.vl.json │ │ ├── vl_0200.vl.json │ │ ├── vl_0201.vl.json │ │ ├── vl_0202.vl.json │ │ ├── vl_0203.vl.json │ │ ├── vl_0204.vl.json │ │ ├── vl_0205.vl.json │ │ ├── vl_0206.vl.json │ │ ├── vl_0207.vl.json │ │ ├── vl_0208.vl.json │ │ ├── vl_0209.vl.json │ │ ├── vl_0210.vl.json │ │ ├── vl_0211.vl.json │ │ ├── vl_0212.vl.json │ │ ├── vl_0213.vl.json │ │ ├── vl_0214.vl.json │ │ ├── vl_0215.vl.json │ │ ├── vl_0216.vl.json │ │ ├── vl_0217.vl.json │ │ ├── vl_0218.vl.json │ │ ├── vl_0219.vl.json │ │ ├── vl_0220.vl.json │ │ ├── vl_0221.vl.json │ │ ├── vl_0222.vl.json │ │ ├── vl_0223.vl.json │ │ ├── vl_0224.vl.json │ │ ├── vl_0225.vl.json │ │ ├── vl_0226.vl.json │ │ ├── vl_0227.vl.json │ │ ├── vl_0228.vl.json │ │ ├── vl_0229.vl.json │ │ ├── vl_0230.vl.json │ │ ├── vl_0231.vl.json │ │ ├── vl_0232.vl.json │ │ ├── vl_0233.vl.json │ │ ├── vl_0234.vl.json │ │ ├── vl_0235.vl.json │ │ ├── vl_0236.vl.json │ │ ├── vl_0237.vl.json │ │ ├── vl_0238.vl.json │ │ ├── vl_0239.vl.json │ │ ├── vl_0240.vl.json │ │ ├── vl_0241.vl.json │ │ ├── vl_0242.vl.json │ │ ├── vl_0243.vl.json │ │ ├── vl_0244.vl.json │ │ ├── vl_0245.vl.json │ │ ├── vl_0246.vl.json │ │ ├── vl_0247.vl.json │ │ ├── vl_0248.vl.json │ │ ├── vl_0249.vl.json │ │ ├── vl_0250.vl.json │ │ ├── vl_0251.vl.json │ │ ├── vl_0252.vl.json │ │ ├── vl_0253.vl.json │ │ ├── vl_0254.vl.json │ │ ├── vl_0255.vl.json │ │ ├── vl_0256.vl.json │ │ ├── vl_0257.vl.json │ │ ├── vl_0258.vl.json │ │ ├── vl_0259.vl.json │ │ ├── vl_0260.vl.json │ │ ├── vl_0261.vl.json │ │ ├── vl_0262.vl.json │ │ ├── vl_0263.vl.json │ │ ├── vl_0264.vl.json │ │ ├── vl_0265.vl.json │ │ ├── vl_0266.vl.json │ │ ├── vl_0267.vl.json │ │ ├── vl_0268.vl.json │ │ ├── vl_0269.vl.json │ │ ├── vl_0270.vl.json │ │ ├── vl_0271.vl.json │ │ ├── vl_0272.vl.json │ │ ├── vl_0273.vl.json │ │ ├── vl_0274.vl.json │ │ ├── vl_0275.vl.json │ │ ├── vl_0276.vl.json │ │ ├── vl_0277.vl.json │ │ ├── vl_0278.vl.json │ │ ├── vl_0279.vl.json │ │ ├── vl_0280.vl.json │ │ ├── vl_0281.vl.json │ │ ├── vl_0282.vl.json │ │ ├── vl_0283.vl.json │ │ ├── vl_0284.vl.json │ │ ├── vl_0285.vl.json │ │ ├── vl_0286.vl.json │ │ ├── vl_0287.vl.json │ │ ├── vl_0288.vl.json │ │ ├── vl_0289.vl.json │ │ ├── vl_0290.vl.json │ │ ├── vl_0291.vl.json │ │ ├── vl_0292.vl.json │ │ ├── vl_0293.vl.json │ │ ├── vl_0294.vl.json │ │ ├── vl_0295.vl.json │ │ ├── vl_0296.vl.json │ │ ├── vl_0297.vl.json │ │ ├── vl_0298.vl.json │ │ ├── vl_0299.vl.json │ │ ├── vl_0300.vl.json │ │ ├── vl_0301.vl.json │ │ ├── vl_0302.vl.json │ │ ├── vl_0303.vl.json │ │ ├── vl_0304.vl.json │ │ ├── vl_0305.vl.json │ │ ├── vl_0306.vl.json │ │ ├── vl_0307.vl.json │ │ ├── vl_0308.vl.json │ │ ├── vl_0309.vl.json │ │ ├── vl_0310.vl.json │ │ ├── vl_0311.vl.json │ │ ├── vl_0312.vl.json │ │ ├── vl_0313.vl.json │ │ ├── vl_0314.vl.json │ │ ├── vl_0315.vl.json │ │ ├── vl_0316.vl.json │ │ ├── vl_0317.vl.json │ │ ├── vl_0318.vl.json │ │ ├── vl_0319.vl.json │ │ ├── vl_0320.vl.json │ │ ├── vl_0321.vl.json │ │ ├── vl_0322.vl.json │ │ ├── vl_0323.vl.json │ │ ├── vl_0324.vl.json │ │ ├── vl_0325.vl.json │ │ ├── vl_0326.vl.json │ │ ├── vl_0327.vl.json │ │ ├── vl_0328.vl.json │ │ ├── vl_0329.vl.json │ │ ├── vl_0330.vl.json │ │ ├── vl_0331.vl.json │ │ ├── vl_0332.vl.json │ │ ├── vl_0333.vl.json │ │ ├── vl_0334.vl.json │ │ ├── vl_0335.vl.json │ │ ├── vl_0336.vl.json │ │ ├── vl_0337.vl.json │ │ ├── vl_0338.vl.json │ │ ├── vl_0339.vl.json │ │ ├── vl_0340.vl.json │ │ ├── vl_0341.vl.json │ │ ├── vl_0342.vl.json │ │ ├── vl_0343.vl.json │ │ ├── vl_0344.vl.json │ │ ├── vl_0345.vl.json │ │ ├── vl_0346.vl.json │ │ ├── vl_0347.vl.json │ │ ├── vl_0348.vl.json │ │ ├── vl_0349.vl.json │ │ ├── vl_0350.vl.json │ │ ├── vl_0351.vl.json │ │ ├── vl_0352.vl.json │ │ ├── vl_0353.vl.json │ │ ├── vl_0354.vl.json │ │ ├── vl_0355.vl.json │ │ ├── vl_0356.vl.json │ │ ├── vl_0357.vl.json │ │ ├── vl_0358.vl.json │ │ ├── vl_0359.vl.json │ │ ├── vl_0360.vl.json │ │ ├── vl_0361.vl.json │ │ ├── vl_0362.vl.json │ │ ├── vl_0363.vl.json │ │ ├── vl_0364.vl.json │ │ ├── vl_0365.vl.json │ │ ├── vl_0366.vl.json │ │ ├── vl_0367.vl.json │ │ ├── vl_0368.vl.json │ │ ├── vl_0369.vl.json │ │ ├── vl_0370.vl.json │ │ ├── vl_0371.vl.json │ │ ├── vl_0372.vl.json │ │ ├── vl_0373.vl.json │ │ ├── vl_0374.vl.json │ │ ├── vl_0375.vl.json │ │ ├── vl_0376.vl.json │ │ ├── vl_0377.vl.json │ │ ├── vl_0378.vl.json │ │ ├── vl_0379.vl.json │ │ ├── vl_0380.vl.json │ │ ├── vl_0381.vl.json │ │ ├── vl_0382.vl.json │ │ ├── vl_0383.vl.json │ │ ├── vl_0384.vl.json │ │ ├── vl_0385.vl.json │ │ ├── vl_0386.vl.json │ │ ├── vl_0387.vl.json │ │ ├── vl_0388.vl.json │ │ ├── vl_0389.vl.json │ │ ├── vl_0390.vl.json │ │ ├── vl_0391.vl.json │ │ ├── vl_0392.vl.json │ │ ├── vl_0393.vl.json │ │ ├── vl_0394.vl.json │ │ ├── vl_0395.vl.json │ │ ├── vl_0396.vl.json │ │ ├── vl_0397.vl.json │ │ ├── vl_0398.vl.json │ │ ├── vl_0399.vl.json │ │ ├── vl_0400.vl.json │ │ ├── vl_0401.vl.json │ │ ├── vl_0402.vl.json │ │ ├── vl_0403.vl.json │ │ ├── vl_0404.vl.json │ │ ├── vl_0405.vl.json │ │ ├── vl_0406.vl.json │ │ ├── vl_0407.vl.json │ │ ├── vl_0408.vl.json │ │ ├── vl_0409.vl.json │ │ ├── vl_0410.vl.json │ │ ├── vl_0411.vl.json │ │ ├── vl_0412.vl.json │ │ ├── vl_0413.vl.json │ │ ├── vl_0414.vl.json │ │ ├── vl_0415.vl.json │ │ ├── vl_0416.vl.json │ │ ├── vl_0417.vl.json │ │ ├── vl_0418.vl.json │ │ ├── vl_0419.vl.json │ │ ├── vl_0420.vl.json │ │ ├── vl_0421.vl.json │ │ ├── vl_0422.vl.json │ │ ├── vl_0423.vl.json │ │ ├── vl_0424.vl.json │ │ ├── vl_0425.vl.json │ │ ├── vl_0426.vl.json │ │ ├── vl_0427.vl.json │ │ ├── vl_0428.vl.json │ │ ├── vl_0429.vl.json │ │ ├── vl_0430.vl.json │ │ ├── vl_0431.vl.json │ │ ├── vl_0432.vl.json │ │ ├── vl_0433.vl.json │ │ ├── vl_0434.vl.json │ │ ├── vl_0435.vl.json │ │ ├── vl_0436.vl.json │ │ ├── vl_0437.vl.json │ │ ├── vl_0438.vl.json │ │ ├── vl_0439.vl.json │ │ ├── vl_0440.vl.json │ │ ├── vl_0441.vl.json │ │ ├── vl_0442.vl.json │ │ ├── vl_0443.vl.json │ │ ├── vl_0444.vl.json │ │ ├── vl_0445.vl.json │ │ ├── vl_0446.vl.json │ │ ├── vl_0447.vl.json │ │ ├── vl_0448.vl.json │ │ ├── vl_0449.vl.json │ │ ├── vl_0450.vl.json │ │ ├── vl_0451.vl.json │ │ ├── vl_0452.vl.json │ │ ├── vl_0453.vl.json │ │ ├── vl_0454.vl.json │ │ ├── vl_0455.vl.json │ │ ├── vl_0456.vl.json │ │ ├── vl_0457.vl.json │ │ ├── vl_0458.vl.json │ │ ├── vl_0459.vl.json │ │ ├── vl_0460.vl.json │ │ ├── vl_0461.vl.json │ │ ├── vl_0462.vl.json │ │ ├── vl_0463.vl.json │ │ ├── vl_0464.vl.json │ │ ├── vl_0465.vl.json │ │ ├── vl_0466.vl.json │ │ ├── vl_0467.vl.json │ │ ├── vl_0468.vl.json │ │ ├── vl_0469.vl.json │ │ ├── vl_0470.vl.json │ │ ├── vl_0471.vl.json │ │ ├── vl_0472.vl.json │ │ ├── vl_0473.vl.json │ │ ├── vl_0474.vl.json │ │ ├── vl_0475.vl.json │ │ ├── vl_0476.vl.json │ │ ├── vl_0477.vl.json │ │ ├── vl_0478.vl.json │ │ ├── vl_0479.vl.json │ │ ├── vl_0480.vl.json │ │ ├── vl_0481.vl.json │ │ ├── vl_0482.vl.json │ │ ├── vl_0483.vl.json │ │ ├── vl_0484.vl.json │ │ ├── vl_0485.vl.json │ │ ├── vl_0486.vl.json │ │ ├── vl_0487.vl.json │ │ ├── vl_0488.vl.json │ │ ├── vl_0489.vl.json │ │ ├── vl_0490.vl.json │ │ ├── vl_0491.vl.json │ │ ├── vl_0492.vl.json │ │ ├── vl_0493.vl.json │ │ ├── vl_0494.vl.json │ │ ├── vl_0495.vl.json │ │ ├── vl_0496.vl.json │ │ ├── vl_0497.vl.json │ │ ├── vl_0498.vl.json │ │ ├── vl_0499.vl.json │ │ ├── vl_0500.vl.json │ │ ├── vl_0501.vl.json │ │ ├── vl_0502.vl.json │ │ ├── vl_0503.vl.json │ │ ├── vl_0504.vl.json │ │ ├── vl_0505.vl.json │ │ ├── vl_0506.vl.json │ │ ├── vl_0507.vl.json │ │ ├── vl_0508.vl.json │ │ ├── vl_0509.vl.json │ │ ├── vl_0510.vl.json │ │ ├── vl_0511.vl.json │ │ ├── vl_0512.vl.json │ │ ├── vl_0513.vl.json │ │ ├── vl_0514.vl.json │ │ ├── vl_0515.vl.json │ │ ├── vl_0516.vl.json │ │ ├── vl_0517.vl.json │ │ ├── vl_0518.vl.json │ │ ├── vl_0519.vl.json │ │ ├── vl_0520.vl.json │ │ ├── vl_0521.vl.json │ │ ├── vl_0522.vl.json │ │ ├── vl_0523.vl.json │ │ ├── vl_0524.vl.json │ │ ├── vl_0525.vl.json │ │ ├── vl_0526.vl.json │ │ ├── vl_0527.vl.json │ │ ├── vl_0528.vl.json │ │ ├── vl_0529.vl.json │ │ ├── vl_0530.vl.json │ │ ├── vl_0531.vl.json │ │ ├── vl_0532.vl.json │ │ ├── vl_0533.vl.json │ │ ├── vl_0534.vl.json │ │ ├── vl_0535.vl.json │ │ ├── vl_0536.vl.json │ │ ├── vl_0537.vl.json │ │ ├── vl_0538.vl.json │ │ ├── vl_0539.vl.json │ │ ├── vl_0540.vl.json │ │ ├── vl_0541.vl.json │ │ ├── vl_0542.vl.json │ │ ├── vl_0543.vl.json │ │ ├── vl_0544.vl.json │ │ ├── vl_0545.vl.json │ │ ├── vl_0546.vl.json │ │ ├── vl_0547.vl.json │ │ ├── vl_0548.vl.json │ │ ├── vl_0549.vl.json │ │ ├── vl_0550.vl.json │ │ ├── vl_0551.vl.json │ │ ├── vl_0552.vl.json │ │ ├── vl_0553.vl.json │ │ ├── vl_0554.vl.json │ │ ├── vl_0555.vl.json │ │ ├── vl_0556.vl.json │ │ ├── vl_0557.vl.json │ │ ├── vl_0558.vl.json │ │ ├── vl_0559.vl.json │ │ ├── vl_0560.vl.json │ │ ├── vl_0561.vl.json │ │ ├── vl_0562.vl.json │ │ ├── vl_0563.vl.json │ │ ├── vl_0564.vl.json │ │ ├── vl_0565.vl.json │ │ ├── vl_0566.vl.json │ │ ├── vl_0567.vl.json │ │ ├── vl_0568.vl.json │ │ ├── vl_0569.vl.json │ │ ├── vl_0570.vl.json │ │ ├── vl_0571.vl.json │ │ ├── vl_0572.vl.json │ │ ├── vl_0573.vl.json │ │ ├── vl_0574.vl.json │ │ ├── vl_0575.vl.json │ │ ├── vl_0576.vl.json │ │ ├── vl_0577.vl.json │ │ ├── vl_0578.vl.json │ │ ├── vl_0579.vl.json │ │ ├── vl_0580.vl.json │ │ ├── vl_0581.vl.json │ │ ├── vl_0582.vl.json │ │ ├── vl_0583.vl.json │ │ ├── vl_0584.vl.json │ │ ├── vl_0585.vl.json │ │ ├── vl_0586.vl.json │ │ ├── vl_0587.vl.json │ │ ├── vl_0588.vl.json │ │ ├── vl_0589.vl.json │ │ ├── vl_0590.vl.json │ │ ├── vl_0591.vl.json │ │ ├── vl_0592.vl.json │ │ ├── vl_0593.vl.json │ │ ├── vl_0594.vl.json │ │ ├── vl_0595.vl.json │ │ ├── vl_0596.vl.json │ │ ├── vl_0597.vl.json │ │ ├── vl_0598.vl.json │ │ ├── vl_0599.vl.json │ │ ├── vl_0600.vl.json │ │ ├── vl_0601.vl.json │ │ ├── vl_0602.vl.json │ │ ├── vl_0603.vl.json │ │ ├── vl_0604.vl.json │ │ ├── vl_0605.vl.json │ │ ├── vl_0606.vl.json │ │ ├── vl_0607.vl.json │ │ ├── vl_0608.vl.json │ │ ├── vl_0609.vl.json │ │ ├── vl_0610.vl.json │ │ ├── vl_0611.vl.json │ │ ├── vl_0612.vl.json │ │ ├── vl_0613.vl.json │ │ ├── vl_0614.vl.json │ │ ├── vl_0615.vl.json │ │ ├── vl_0616.vl.json │ │ ├── vl_0617.vl.json │ │ ├── vl_0618.vl.json │ │ ├── vl_0619.vl.json │ │ ├── vl_0620.vl.json │ │ ├── vl_0621.vl.json │ │ ├── vl_0622.vl.json │ │ ├── vl_0623.vl.json │ │ ├── vl_0624.vl.json │ │ ├── vl_0625.vl.json │ │ ├── vl_0626.vl.json │ │ ├── vl_0627.vl.json │ │ ├── vl_0628.vl.json │ │ ├── vl_0629.vl.json │ │ ├── vl_0630.vl.json │ │ ├── vl_0631.vl.json │ │ ├── vl_0632.vl.json │ │ ├── vl_0633.vl.json │ │ ├── vl_0634.vl.json │ │ ├── vl_0635.vl.json │ │ ├── vl_0636.vl.json │ │ ├── vl_0637.vl.json │ │ ├── vl_0638.vl.json │ │ ├── vl_0639.vl.json │ │ ├── vl_0640.vl.json │ │ ├── vl_0641.vl.json │ │ ├── vl_0642.vl.json │ │ ├── vl_0643.vl.json │ │ ├── vl_0644.vl.json │ │ ├── vl_0645.vl.json │ │ ├── vl_0646.vl.json │ │ ├── vl_0647.vl.json │ │ ├── vl_0648.vl.json │ │ ├── vl_0649.vl.json │ │ ├── vl_0650.vl.json │ │ ├── vl_0651.vl.json │ │ ├── vl_0652.vl.json │ │ ├── vl_0653.vl.json │ │ ├── vl_0654.vl.json │ │ ├── vl_0655.vl.json │ │ ├── vl_0656.vl.json │ │ ├── vl_0657.vl.json │ │ ├── vl_0658.vl.json │ │ ├── vl_0659.vl.json │ │ ├── vl_0660.vl.json │ │ ├── vl_0661.vl.json │ │ ├── vl_0662.vl.json │ │ ├── vl_0663.vl.json │ │ ├── vl_0664.vl.json │ │ ├── vl_0665.vl.json │ │ ├── vl_0666.vl.json │ │ ├── vl_0667.vl.json │ │ ├── vl_0668.vl.json │ │ ├── vl_0669.vl.json │ │ ├── vl_0670.vl.json │ │ ├── vl_0671.vl.json │ │ ├── vl_0672.vl.json │ │ ├── vl_0673.vl.json │ │ ├── vl_0674.vl.json │ │ ├── vl_0675.vl.json │ │ ├── vl_0676.vl.json │ │ ├── vl_0677.vl.json │ │ ├── vl_0678.vl.json │ │ ├── vl_0679.vl.json │ │ ├── vl_0680.vl.json │ │ ├── vl_0681.vl.json │ │ ├── vl_0682.vl.json │ │ ├── vl_0683.vl.json │ │ ├── vl_0684.vl.json │ │ ├── vl_0685.vl.json │ │ ├── vl_0686.vl.json │ │ ├── vl_0687.vl.json │ │ ├── vl_0688.vl.json │ │ ├── vl_0689.vl.json │ │ ├── vl_0690.vl.json │ │ ├── vl_0691.vl.json │ │ ├── vl_0692.vl.json │ │ ├── vl_0693.vl.json │ │ ├── vl_0694.vl.json │ │ ├── vl_0695.vl.json │ │ ├── vl_0696.vl.json │ │ ├── vl_0697.vl.json │ │ ├── vl_0698.vl.json │ │ ├── vl_0699.vl.json │ │ ├── vl_0700.vl.json │ │ ├── vl_0701.vl.json │ │ ├── vl_0702.vl.json │ │ ├── vl_0703.vl.json │ │ ├── vl_0704.vl.json │ │ ├── vl_0705.vl.json │ │ ├── vl_0706.vl.json │ │ ├── vl_0707.vl.json │ │ ├── vl_0708.vl.json │ │ ├── vl_0709.vl.json │ │ ├── vl_0710.vl.json │ │ ├── vl_0711.vl.json │ │ ├── vl_0712.vl.json │ │ ├── vl_0713.vl.json │ │ ├── vl_0714.vl.json │ │ ├── vl_0715.vl.json │ │ ├── vl_0716.vl.json │ │ ├── vl_0717.vl.json │ │ ├── vl_0718.vl.json │ │ ├── vl_0719.vl.json │ │ ├── vl_0720.vl.json │ │ ├── vl_0721.vl.json │ │ ├── vl_0722.vl.json │ │ ├── vl_0723.vl.json │ │ ├── vl_0724.vl.json │ │ ├── vl_0725.vl.json │ │ ├── vl_0726.vl.json │ │ ├── vl_0727.vl.json │ │ ├── vl_0728.vl.json │ │ ├── vl_0729.vl.json │ │ ├── vl_0730.vl.json │ │ ├── vl_0731.vl.json │ │ ├── vl_0732.vl.json │ │ ├── vl_0733.vl.json │ │ ├── vl_0734.vl.json │ │ ├── vl_0735.vl.json │ │ ├── vl_0736.vl.json │ │ ├── vl_0737.vl.json │ │ ├── vl_0738.vl.json │ │ ├── vl_0739.vl.json │ │ ├── vl_0740.vl.json │ │ ├── vl_0741.vl.json │ │ ├── vl_0742.vl.json │ │ ├── vl_0743.vl.json │ │ ├── vl_0744.vl.json │ │ ├── vl_0745.vl.json │ │ ├── vl_0746.vl.json │ │ ├── vl_0747.vl.json │ │ ├── vl_0748.vl.json │ │ ├── vl_0749.vl.json │ │ ├── vl_0750.vl.json │ │ ├── vl_0751.vl.json │ │ ├── vl_0752.vl.json │ │ ├── vl_0753.vl.json │ │ ├── vl_0754.vl.json │ │ ├── vl_0755.vl.json │ │ ├── vl_0756.vl.json │ │ ├── vl_0757.vl.json │ │ ├── vl_0758.vl.json │ │ ├── vl_0759.vl.json │ │ ├── vl_0760.vl.json │ │ ├── vl_0761.vl.json │ │ ├── vl_0762.vl.json │ │ ├── vl_0763.vl.json │ │ ├── vl_0764.vl.json │ │ ├── vl_0765.vl.json │ │ ├── vl_0766.vl.json │ │ ├── vl_0767.vl.json │ │ ├── vl_0768.vl.json │ │ ├── vl_0769.vl.json │ │ ├── vl_0770.vl.json │ │ ├── vl_0771.vl.json │ │ ├── vl_0772.vl.json │ │ ├── vl_0773.vl.json │ │ ├── vl_0774.vl.json │ │ ├── vl_0775.vl.json │ │ ├── vl_0776.vl.json │ │ ├── vl_0777.vl.json │ │ ├── vl_0778.vl.json │ │ ├── vl_0779.vl.json │ │ ├── vl_0780.vl.json │ │ ├── vl_0781.vl.json │ │ ├── vl_0782.vl.json │ │ ├── vl_0783.vl.json │ │ ├── vl_0784.vl.json │ │ ├── vl_0785.vl.json │ │ ├── vl_0786.vl.json │ │ ├── vl_0787.vl.json │ │ ├── vl_0788.vl.json │ │ ├── vl_0789.vl.json │ │ ├── vl_0790.vl.json │ │ ├── vl_0791.vl.json │ │ ├── vl_0792.vl.json │ │ ├── vl_0793.vl.json │ │ ├── vl_0794.vl.json │ │ ├── vl_0795.vl.json │ │ ├── vl_0796.vl.json │ │ ├── vl_0797.vl.json │ │ ├── vl_0798.vl.json │ │ ├── vl_0799.vl.json │ │ ├── vl_0800.vl.json │ │ ├── vl_0801.vl.json │ │ ├── vl_0802.vl.json │ │ ├── vl_0803.vl.json │ │ ├── vl_0804.vl.json │ │ ├── vl_0805.vl.json │ │ ├── vl_0806.vl.json │ │ ├── vl_0807.vl.json │ │ ├── vl_0808.vl.json │ │ ├── vl_0809.vl.json │ │ ├── vl_0810.vl.json │ │ ├── vl_0811.vl.json │ │ ├── vl_0812.vl.json │ │ ├── vl_0813.vl.json │ │ ├── vl_0814.vl.json │ │ ├── vl_0815.vl.json │ │ ├── vl_0816.vl.json │ │ ├── vl_0817.vl.json │ │ ├── vl_0818.vl.json │ │ ├── vl_0819.vl.json │ │ ├── vl_0820.vl.json │ │ ├── vl_0821.vl.json │ │ ├── vl_0822.vl.json │ │ ├── vl_0823.vl.json │ │ ├── vl_0824.vl.json │ │ ├── vl_0825.vl.json │ │ ├── vl_0826.vl.json │ │ ├── vl_0827.vl.json │ │ ├── vl_0828.vl.json │ │ ├── vl_0829.vl.json │ │ ├── vl_0830.vl.json │ │ ├── vl_0831.vl.json │ │ ├── vl_0832.vl.json │ │ ├── vl_0833.vl.json │ │ ├── vl_0834.vl.json │ │ ├── vl_0835.vl.json │ │ ├── vl_0836.vl.json │ │ ├── vl_0837.vl.json │ │ ├── vl_0838.vl.json │ │ ├── vl_0839.vl.json │ │ ├── vl_0840.vl.json │ │ ├── vl_0841.vl.json │ │ ├── vl_0842.vl.json │ │ ├── vl_0843.vl.json │ │ ├── vl_0844.vl.json │ │ ├── vl_0845.vl.json │ │ ├── vl_0846.vl.json │ │ ├── vl_0847.vl.json │ │ ├── vl_0848.vl.json │ │ ├── vl_0849.vl.json │ │ ├── vl_0850.vl.json │ │ ├── vl_0851.vl.json │ │ ├── vl_0852.vl.json │ │ ├── vl_0853.vl.json │ │ ├── vl_0854.vl.json │ │ ├── vl_0855.vl.json │ │ ├── vl_0856.vl.json │ │ ├── vl_0857.vl.json │ │ ├── vl_0858.vl.json │ │ ├── vl_0859.vl.json │ │ ├── vl_0860.vl.json │ │ ├── vl_0861.vl.json │ │ ├── vl_0862.vl.json │ │ ├── vl_0863.vl.json │ │ ├── vl_0864.vl.json │ │ ├── vl_0865.vl.json │ │ ├── vl_0866.vl.json │ │ ├── vl_0867.vl.json │ │ ├── vl_0868.vl.json │ │ ├── vl_0869.vl.json │ │ ├── vl_0870.vl.json │ │ ├── vl_0871.vl.json │ │ ├── vl_0872.vl.json │ │ ├── vl_0873.vl.json │ │ ├── vl_0874.vl.json │ │ ├── vl_0875.vl.json │ │ ├── vl_0876.vl.json │ │ ├── vl_0877.vl.json │ │ ├── vl_0878.vl.json │ │ ├── vl_0879.vl.json │ │ ├── vl_0880.vl.json │ │ ├── vl_0881.vl.json │ │ ├── vl_0882.vl.json │ │ ├── vl_0883.vl.json │ │ ├── vl_0884.vl.json │ │ ├── vl_0885.vl.json │ │ ├── vl_0886.vl.json │ │ ├── vl_0887.vl.json │ │ ├── vl_0888.vl.json │ │ ├── vl_0889.vl.json │ │ ├── vl_0890.vl.json │ │ ├── vl_0891.vl.json │ │ ├── vl_0892.vl.json │ │ ├── vl_0893.vl.json │ │ ├── vl_0894.vl.json │ │ ├── vl_0895.vl.json │ │ ├── vl_0896.vl.json │ │ ├── vl_0897.vl.json │ │ ├── vl_0898.vl.json │ │ ├── vl_0899.vl.json │ │ ├── vl_0900.vl.json │ │ ├── vl_0901.vl.json │ │ ├── vl_0902.vl.json │ │ ├── vl_0903.vl.json │ │ ├── vl_0904.vl.json │ │ ├── vl_0905.vl.json │ │ ├── vl_0906.vl.json │ │ ├── vl_0907.vl.json │ │ ├── vl_0908.vl.json │ │ ├── vl_0909.vl.json │ │ ├── vl_0910.vl.json │ │ ├── vl_0911.vl.json │ │ ├── vl_0912.vl.json │ │ ├── vl_0913.vl.json │ │ ├── vl_0914.vl.json │ │ ├── vl_0915.vl.json │ │ ├── vl_0916.vl.json │ │ ├── vl_0917.vl.json │ │ ├── vl_0918.vl.json │ │ ├── vl_0919.vl.json │ │ ├── vl_0920.vl.json │ │ ├── vl_0921.vl.json │ │ ├── vl_0922.vl.json │ │ ├── vl_0923.vl.json │ │ ├── vl_0924.vl.json │ │ ├── vl_0925.vl.json │ │ ├── vl_0926.vl.json │ │ ├── vl_0927.vl.json │ │ ├── vl_0928.vl.json │ │ ├── vl_0929.vl.json │ │ ├── vl_0930.vl.json │ │ ├── vl_0931.vl.json │ │ ├── vl_0932.vl.json │ │ ├── vl_0933.vl.json │ │ ├── vl_0934.vl.json │ │ ├── vl_0935.vl.json │ │ ├── vl_0936.vl.json │ │ ├── vl_0937.vl.json │ │ ├── vl_0938.vl.json │ │ ├── vl_0939.vl.json │ │ ├── vl_0940.vl.json │ │ ├── vl_0941.vl.json │ │ ├── vl_0942.vl.json │ │ ├── vl_0943.vl.json │ │ ├── vl_0944.vl.json │ │ ├── vl_0945.vl.json │ │ ├── vl_0946.vl.json │ │ ├── vl_0947.vl.json │ │ ├── vl_0948.vl.json │ │ ├── vl_0949.vl.json │ │ ├── vl_0950.vl.json │ │ ├── vl_0951.vl.json │ │ ├── vl_0952.vl.json │ │ ├── vl_0953.vl.json │ │ ├── vl_0954.vl.json │ │ ├── vl_0955.vl.json │ │ ├── vl_0956.vl.json │ │ ├── vl_0957.vl.json │ │ ├── vl_0958.vl.json │ │ ├── vl_0959.vl.json │ │ ├── vl_0960.vl.json │ │ ├── vl_0961.vl.json │ │ ├── vl_0962.vl.json │ │ ├── vl_0963.vl.json │ │ ├── vl_0964.vl.json │ │ ├── vl_0965.vl.json │ │ ├── vl_0966.vl.json │ │ ├── vl_0967.vl.json │ │ ├── vl_0968.vl.json │ │ ├── vl_0969.vl.json │ │ ├── vl_0970.vl.json │ │ ├── vl_0971.vl.json │ │ ├── vl_0972.vl.json │ │ ├── vl_0973.vl.json │ │ ├── vl_0974.vl.json │ │ ├── vl_0975.vl.json │ │ ├── vl_0976.vl.json │ │ ├── vl_0977.vl.json │ │ ├── vl_0978.vl.json │ │ ├── vl_0979.vl.json │ │ ├── vl_0980.vl.json │ │ ├── vl_0981.vl.json │ │ ├── vl_0982.vl.json │ │ ├── vl_0983.vl.json │ │ ├── vl_0984.vl.json │ │ ├── vl_0985.vl.json │ │ ├── vl_0986.vl.json │ │ ├── vl_0987.vl.json │ │ ├── vl_0988.vl.json │ │ ├── vl_0989.vl.json │ │ ├── vl_0990.vl.json │ │ ├── vl_0991.vl.json │ │ ├── vl_0992.vl.json │ │ ├── vl_0993.vl.json │ │ ├── vl_0994.vl.json │ │ ├── vl_0995.vl.json │ │ ├── vl_0996.vl.json │ │ ├── vl_0997.vl.json │ │ ├── vl_0998.vl.json │ │ ├── vl_0999.vl.json │ │ ├── vl_1000.vl.json │ │ ├── vl_1001.vl.json │ │ ├── vl_1002.vl.json │ │ ├── vl_1003.vl.json │ │ ├── vl_1004.vl.json │ │ ├── vl_1005.vl.json │ │ ├── vl_1006.vl.json │ │ ├── vl_1007.vl.json │ │ ├── vl_1008.vl.json │ │ ├── vl_1009.vl.json │ │ ├── vl_1010.vl.json │ │ ├── vl_1011.vl.json │ │ ├── vl_1012.vl.json │ │ ├── vl_1013.vl.json │ │ ├── vl_1014.vl.json │ │ ├── vl_1015.vl.json │ │ ├── vl_1016.vl.json │ │ ├── vl_1017.vl.json │ │ ├── vl_1018.vl.json │ │ ├── vl_1019.vl.json │ │ ├── vl_1020.vl.json │ │ ├── vl_1021.vl.json │ │ ├── vl_1022.vl.json │ │ ├── vl_1023.vl.json │ │ ├── vl_1024.vl.json │ │ ├── vl_1025.vl.json │ │ ├── vl_1026.vl.json │ │ ├── vl_1027.vl.json │ │ ├── vl_1028.vl.json │ │ ├── vl_1029.vl.json │ │ ├── vl_1030.vl.json │ │ ├── vl_1031.vl.json │ │ ├── vl_1032.vl.json │ │ ├── vl_1033.vl.json │ │ ├── vl_1034.vl.json │ │ ├── vl_1035.vl.json │ │ ├── vl_1036.vl.json │ │ ├── vl_1037.vl.json │ │ ├── vl_1038.vl.json │ │ ├── vl_1039.vl.json │ │ ├── vl_1040.vl.json │ │ ├── vl_1041.vl.json │ │ ├── vl_1042.vl.json │ │ ├── vl_1043.vl.json │ │ ├── vl_1044.vl.json │ │ ├── vl_1045.vl.json │ │ ├── vl_1046.vl.json │ │ ├── vl_1047.vl.json │ │ ├── vl_1048.vl.json │ │ ├── vl_1049.vl.json │ │ ├── vl_1050.vl.json │ │ ├── vl_1051.vl.json │ │ ├── vl_1052.vl.json │ │ ├── vl_1053.vl.json │ │ ├── vl_1054.vl.json │ │ ├── vl_1055.vl.json │ │ ├── vl_1056.vl.json │ │ ├── vl_1057.vl.json │ │ ├── vl_1058.vl.json │ │ ├── vl_1059.vl.json │ │ ├── vl_1060.vl.json │ │ ├── vl_1061.vl.json │ │ ├── vl_1062.vl.json │ │ ├── vl_1063.vl.json │ │ ├── vl_1064.vl.json │ │ ├── vl_1065.vl.json │ │ ├── vl_1066.vl.json │ │ ├── vl_1067.vl.json │ │ ├── vl_1068.vl.json │ │ ├── vl_1069.vl.json │ │ ├── vl_1070.vl.json │ │ ├── vl_1071.vl.json │ │ ├── vl_1072.vl.json │ │ ├── vl_1073.vl.json │ │ ├── vl_1074.vl.json │ │ ├── vl_1075.vl.json │ │ ├── vl_1076.vl.json │ │ ├── vl_1077.vl.json │ │ ├── vl_1078.vl.json │ │ ├── vl_1079.vl.json │ │ ├── vl_1080.vl.json │ │ ├── vl_1081.vl.json │ │ ├── vl_1082.vl.json │ │ ├── vl_1083.vl.json │ │ ├── vl_1084.vl.json │ │ ├── vl_1085.vl.json │ │ ├── vl_1086.vl.json │ │ ├── vl_1087.vl.json │ │ ├── vl_1088.vl.json │ │ ├── vl_1089.vl.json │ │ ├── vl_1090.vl.json │ │ ├── vl_1091.vl.json │ │ ├── vl_1092.vl.json │ │ ├── vl_1093.vl.json │ │ ├── vl_1094.vl.json │ │ ├── vl_1095.vl.json │ │ ├── vl_1096.vl.json │ │ ├── vl_1097.vl.json │ │ ├── vl_1098.vl.json │ │ ├── vl_1099.vl.json │ │ ├── vl_1100.vl.json │ │ ├── vl_1101.vl.json │ │ ├── vl_1102.vl.json │ │ ├── vl_1103.vl.json │ │ ├── vl_1104.vl.json │ │ ├── vl_1105.vl.json │ │ ├── vl_1106.vl.json │ │ ├── vl_1107.vl.json │ │ ├── vl_1108.vl.json │ │ ├── vl_1109.vl.json │ │ ├── vl_1110.vl.json │ │ ├── vl_1111.vl.json │ │ ├── vl_1112.vl.json │ │ ├── vl_1113.vl.json │ │ ├── vl_1114.vl.json │ │ ├── vl_1115.vl.json │ │ ├── vl_1116.vl.json │ │ ├── vl_1117.vl.json │ │ ├── vl_1118.vl.json │ │ ├── vl_1119.vl.json │ │ ├── vl_1120.vl.json │ │ ├── vl_1121.vl.json │ │ ├── vl_1122.vl.json │ │ ├── vl_1123.vl.json │ │ ├── vl_1124.vl.json │ │ ├── vl_1125.vl.json │ │ ├── vl_1126.vl.json │ │ ├── vl_1127.vl.json │ │ ├── vl_1128.vl.json │ │ ├── vl_1129.vl.json │ │ ├── vl_1130.vl.json │ │ ├── vl_1131.vl.json │ │ ├── vl_1132.vl.json │ │ ├── vl_1133.vl.json │ │ ├── vl_1134.vl.json │ │ ├── vl_1135.vl.json │ │ ├── vl_1136.vl.json │ │ ├── vl_1137.vl.json │ │ ├── vl_1138.vl.json │ │ ├── vl_1139.vl.json │ │ ├── vl_1140.vl.json │ │ ├── vl_1141.vl.json │ │ ├── vl_1142.vl.json │ │ ├── vl_1143.vl.json │ │ ├── vl_1144.vl.json │ │ ├── vl_1145.vl.json │ │ ├── vl_1146.vl.json │ │ ├── vl_1147.vl.json │ │ ├── vl_1148.vl.json │ │ ├── vl_1149.vl.json │ │ ├── vl_1150.vl.json │ │ ├── vl_1151.vl.json │ │ ├── vl_1152.vl.json │ │ ├── vl_1153.vl.json │ │ ├── vl_1154.vl.json │ │ ├── vl_1155.vl.json │ │ ├── vl_1156.vl.json │ │ ├── vl_1157.vl.json │ │ ├── vl_1158.vl.json │ │ ├── vl_1159.vl.json │ │ ├── vl_1160.vl.json │ │ ├── vl_1161.vl.json │ │ ├── vl_1162.vl.json │ │ ├── vl_1163.vl.json │ │ ├── vl_1164.vl.json │ │ ├── vl_1165.vl.json │ │ ├── vl_1166.vl.json │ │ ├── vl_1167.vl.json │ │ ├── vl_1168.vl.json │ │ ├── vl_1169.vl.json │ │ ├── vl_1170.vl.json │ │ ├── vl_1171.vl.json │ │ ├── vl_1172.vl.json │ │ ├── vl_1173.vl.json │ │ ├── vl_1174.vl.json │ │ ├── vl_1175.vl.json │ │ ├── vl_1176.vl.json │ │ ├── vl_1177.vl.json │ │ ├── vl_1178.vl.json │ │ ├── vl_1179.vl.json │ │ ├── vl_1180.vl.json │ │ ├── vl_1181.vl.json │ │ ├── vl_1182.vl.json │ │ ├── vl_1183.vl.json │ │ ├── vl_1184.vl.json │ │ ├── vl_1185.vl.json │ │ ├── vl_1186.vl.json │ │ ├── vl_1187.vl.json │ │ ├── vl_1188.vl.json │ │ ├── vl_1189.vl.json │ │ ├── vl_1190.vl.json │ │ ├── vl_1191.vl.json │ │ ├── vl_1192.vl.json │ │ ├── vl_1193.vl.json │ │ ├── vl_1194.vl.json │ │ ├── vl_1195.vl.json │ │ ├── vl_1196.vl.json │ │ ├── vl_1197.vl.json │ │ ├── vl_1198.vl.json │ │ ├── vl_1199.vl.json │ │ ├── vl_1200.vl.json │ │ ├── vl_1201.vl.json │ │ ├── vl_1202.vl.json │ │ ├── vl_1203.vl.json │ │ ├── vl_1204.vl.json │ │ ├── vl_1205.vl.json │ │ ├── vl_1206.vl.json │ │ ├── vl_1207.vl.json │ │ ├── vl_1208.vl.json │ │ ├── vl_1209.vl.json │ │ ├── vl_1210.vl.json │ │ ├── vl_1211.vl.json │ │ ├── vl_1212.vl.json │ │ ├── vl_1213.vl.json │ │ ├── vl_1214.vl.json │ │ ├── vl_1215.vl.json │ │ ├── vl_1216.vl.json │ │ ├── vl_1217.vl.json │ │ ├── vl_1218.vl.json │ │ ├── vl_1219.vl.json │ │ ├── vl_1220.vl.json │ │ ├── vl_1221.vl.json │ │ ├── vl_1222.vl.json │ │ ├── vl_1223.vl.json │ │ ├── vl_1224.vl.json │ │ ├── vl_1225.vl.json │ │ ├── vl_1226.vl.json │ │ ├── vl_1227.vl.json │ │ ├── vl_1228.vl.json │ │ ├── vl_1229.vl.json │ │ ├── vl_1230.vl.json │ │ ├── vl_1231.vl.json │ │ ├── vl_1232.vl.json │ │ ├── vl_1233.vl.json │ │ ├── vl_1234.vl.json │ │ ├── vl_1235.vl.json │ │ ├── vl_1236.vl.json │ │ ├── vl_1237.vl.json │ │ ├── vl_1238.vl.json │ │ ├── vl_1239.vl.json │ │ ├── vl_1240.vl.json │ │ ├── vl_1241.vl.json │ │ ├── vl_1242.vl.json │ │ ├── vl_1243.vl.json │ │ ├── vl_1244.vl.json │ │ ├── vl_1245.vl.json │ │ ├── vl_1246.vl.json │ │ ├── vl_1247.vl.json │ │ ├── vl_1248.vl.json │ │ ├── vl_1249.vl.json │ │ ├── vl_1250.vl.json │ │ ├── vl_1251.vl.json │ │ ├── vl_1252.vl.json │ │ ├── vl_1253.vl.json │ │ ├── vl_1254.vl.json │ │ ├── vl_1255.vl.json │ │ ├── vl_1256.vl.json │ │ ├── vl_1257.vl.json │ │ ├── vl_1258.vl.json │ │ ├── vl_1259.vl.json │ │ ├── vl_1260.vl.json │ │ ├── vl_1261.vl.json │ │ ├── vl_1262.vl.json │ │ ├── vl_1263.vl.json │ │ ├── vl_1264.vl.json │ │ ├── vl_1265.vl.json │ │ ├── vl_1266.vl.json │ │ ├── vl_1267.vl.json │ │ ├── vl_1268.vl.json │ │ ├── vl_1269.vl.json │ │ ├── vl_1270.vl.json │ │ ├── vl_1271.vl.json │ │ ├── vl_1272.vl.json │ │ ├── vl_1273.vl.json │ │ ├── vl_1274.vl.json │ │ ├── vl_1275.vl.json │ │ ├── vl_1276.vl.json │ │ ├── vl_1277.vl.json │ │ ├── vl_1278.vl.json │ │ ├── vl_1279.vl.json │ │ ├── vl_1280.vl.json │ │ ├── vl_1281.vl.json │ │ ├── vl_1282.vl.json │ │ ├── vl_1283.vl.json │ │ ├── vl_1284.vl.json │ │ ├── vl_1285.vl.json │ │ ├── vl_1286.vl.json │ │ ├── vl_1287.vl.json │ │ ├── vl_1288.vl.json │ │ ├── vl_1289.vl.json │ │ ├── vl_1290.vl.json │ │ ├── vl_1291.vl.json │ │ ├── vl_1292.vl.json │ │ ├── vl_1293.vl.json │ │ ├── vl_1294.vl.json │ │ ├── vl_1295.vl.json │ │ ├── vl_1296.vl.json │ │ ├── vl_1297.vl.json │ │ ├── vl_1298.vl.json │ │ ├── vl_1299.vl.json │ │ ├── vl_1300.vl.json │ │ ├── vl_1301.vl.json │ │ ├── vl_1302.vl.json │ │ ├── vl_1303.vl.json │ │ ├── vl_1304.vl.json │ │ ├── vl_1305.vl.json │ │ ├── vl_1306.vl.json │ │ ├── vl_1307.vl.json │ │ ├── vl_1308.vl.json │ │ ├── vl_1309.vl.json │ │ ├── vl_1310.vl.json │ │ ├── vl_1311.vl.json │ │ ├── vl_1312.vl.json │ │ ├── vl_1313.vl.json │ │ ├── vl_1314.vl.json │ │ ├── vl_1315.vl.json │ │ ├── vl_1316.vl.json │ │ ├── vl_1317.vl.json │ │ ├── vl_1318.vl.json │ │ ├── vl_1319.vl.json │ │ ├── vl_1320.vl.json │ │ ├── vl_1321.vl.json │ │ ├── vl_1322.vl.json │ │ ├── vl_1323.vl.json │ │ ├── vl_1324.vl.json │ │ ├── vl_1325.vl.json │ │ ├── vl_1326.vl.json │ │ ├── vl_1327.vl.json │ │ ├── vl_1328.vl.json │ │ ├── vl_1329.vl.json │ │ ├── vl_1330.vl.json │ │ ├── vl_1331.vl.json │ │ ├── vl_1332.vl.json │ │ ├── vl_1333.vl.json │ │ ├── vl_1334.vl.json │ │ ├── vl_1335.vl.json │ │ ├── vl_1336.vl.json │ │ ├── vl_1337.vl.json │ │ ├── vl_1338.vl.json │ │ ├── vl_1339.vl.json │ │ ├── vl_1340.vl.json │ │ ├── vl_1341.vl.json │ │ ├── vl_1342.vl.json │ │ ├── vl_1343.vl.json │ │ ├── vl_1344.vl.json │ │ ├── vl_1345.vl.json │ │ ├── vl_1346.vl.json │ │ ├── vl_1347.vl.json │ │ ├── vl_1348.vl.json │ │ ├── vl_1349.vl.json │ │ ├── vl_1350.vl.json │ │ ├── vl_1351.vl.json │ │ ├── vl_1352.vl.json │ │ ├── vl_1353.vl.json │ │ ├── vl_1354.vl.json │ │ ├── vl_1355.vl.json │ │ ├── vl_1356.vl.json │ │ ├── vl_1357.vl.json │ │ ├── vl_1358.vl.json │ │ ├── vl_1359.vl.json │ │ ├── vl_1360.vl.json │ │ ├── vl_1361.vl.json │ │ ├── vl_1362.vl.json │ │ ├── vl_1363.vl.json │ │ ├── vl_1364.vl.json │ │ ├── vl_1365.vl.json │ │ ├── vl_1366.vl.json │ │ ├── vl_1367.vl.json │ │ ├── vl_1368.vl.json │ │ ├── vl_1369.vl.json │ │ ├── vl_1370.vl.json │ │ ├── vl_1371.vl.json │ │ ├── vl_1372.vl.json │ │ ├── vl_1373.vl.json │ │ ├── vl_1374.vl.json │ │ ├── vl_1375.vl.json │ │ ├── vl_1376.vl.json │ │ ├── vl_1377.vl.json │ │ ├── vl_1378.vl.json │ │ ├── vl_1379.vl.json │ │ ├── vl_1380.vl.json │ │ ├── vl_1381.vl.json │ │ ├── vl_1382.vl.json │ │ ├── vl_1383.vl.json │ │ ├── vl_1384.vl.json │ │ ├── vl_1385.vl.json │ │ ├── vl_1386.vl.json │ │ ├── vl_1387.vl.json │ │ ├── vl_1388.vl.json │ │ ├── vl_1389.vl.json │ │ ├── vl_1390.vl.json │ │ ├── vl_1391.vl.json │ │ ├── vl_1392.vl.json │ │ ├── vl_1393.vl.json │ │ ├── vl_1394.vl.json │ │ ├── vl_1395.vl.json │ │ ├── vl_1396.vl.json │ │ ├── vl_1397.vl.json │ │ ├── vl_1398.vl.json │ │ ├── vl_1399.vl.json │ │ ├── vl_1400.vl.json │ │ ├── vl_1401.vl.json │ │ ├── vl_1402.vl.json │ │ ├── vl_1403.vl.json │ │ ├── vl_1404.vl.json │ │ ├── vl_1405.vl.json │ │ ├── vl_1406.vl.json │ │ ├── vl_1407.vl.json │ │ ├── vl_1408.vl.json │ │ ├── vl_1409.vl.json │ │ ├── vl_1410.vl.json │ │ ├── vl_1411.vl.json │ │ ├── vl_1412.vl.json │ │ ├── vl_1413.vl.json │ │ ├── vl_1414.vl.json │ │ ├── vl_1415.vl.json │ │ ├── vl_1416.vl.json │ │ ├── vl_1417.vl.json │ │ ├── vl_1418.vl.json │ │ ├── vl_1419.vl.json │ │ ├── vl_1420.vl.json │ │ ├── vl_1421.vl.json │ │ ├── vl_1422.vl.json │ │ ├── vl_1423.vl.json │ │ ├── vl_1424.vl.json │ │ ├── vl_1425.vl.json │ │ ├── vl_1426.vl.json │ │ ├── vl_1427.vl.json │ │ ├── vl_1428.vl.json │ │ ├── vl_1429.vl.json │ │ ├── vl_1430.vl.json │ │ ├── vl_1431.vl.json │ │ ├── vl_1432.vl.json │ │ ├── vl_1433.vl.json │ │ ├── vl_1434.vl.json │ │ ├── vl_1435.vl.json │ │ ├── vl_1436.vl.json │ │ ├── vl_1437.vl.json │ │ ├── vl_1438.vl.json │ │ ├── vl_1439.vl.json │ │ ├── vl_1440.vl.json │ │ ├── vl_1441.vl.json │ │ ├── vl_1442.vl.json │ │ ├── vl_1443.vl.json │ │ ├── vl_1444.vl.json │ │ ├── vl_1445.vl.json │ │ ├── vl_1446.vl.json │ │ ├── vl_1447.vl.json │ │ ├── vl_1448.vl.json │ │ ├── vl_1449.vl.json │ │ ├── vl_1450.vl.json │ │ ├── vl_1451.vl.json │ │ ├── vl_1452.vl.json │ │ ├── vl_1453.vl.json │ │ ├── vl_1454.vl.json │ │ ├── vl_1455.vl.json │ │ ├── vl_1456.vl.json │ │ ├── vl_1457.vl.json │ │ ├── vl_1458.vl.json │ │ ├── vl_1459.vl.json │ │ ├── vl_1460.vl.json │ │ ├── vl_1461.vl.json │ │ ├── vl_1462.vl.json │ │ ├── vl_1463.vl.json │ │ ├── vl_1464.vl.json │ │ ├── vl_1465.vl.json │ │ ├── vl_1466.vl.json │ │ ├── vl_1467.vl.json │ │ ├── vl_1468.vl.json │ │ ├── vl_1469.vl.json │ │ ├── vl_1470.vl.json │ │ ├── vl_1471.vl.json │ │ ├── vl_1472.vl.json │ │ ├── vl_1473.vl.json │ │ ├── vl_1474.vl.json │ │ ├── vl_1475.vl.json │ │ ├── vl_1476.vl.json │ │ ├── vl_1477.vl.json │ │ ├── vl_1478.vl.json │ │ ├── vl_1479.vl.json │ │ ├── vl_1480.vl.json │ │ ├── vl_1481.vl.json │ │ ├── vl_1482.vl.json │ │ ├── vl_1483.vl.json │ │ ├── vl_1484.vl.json │ │ ├── vl_1485.vl.json │ │ ├── vl_1486.vl.json │ │ ├── vl_1487.vl.json │ │ ├── vl_1488.vl.json │ │ ├── vl_1489.vl.json │ │ ├── vl_1490.vl.json │ │ ├── vl_1491.vl.json │ │ ├── vl_1492.vl.json │ │ ├── vl_1493.vl.json │ │ ├── vl_1494.vl.json │ │ ├── vl_1495.vl.json │ │ ├── vl_1496.vl.json │ │ ├── vl_1497.vl.json │ │ ├── vl_1498.vl.json │ │ ├── vl_1499.vl.json │ │ ├── vl_1500.vl.json │ │ ├── vl_1501.vl.json │ │ ├── vl_1502.vl.json │ │ ├── vl_1503.vl.json │ │ ├── vl_1504.vl.json │ │ ├── vl_1505.vl.json │ │ ├── vl_1506.vl.json │ │ ├── vl_1507.vl.json │ │ ├── vl_1508.vl.json │ │ ├── vl_1509.vl.json │ │ ├── vl_1510.vl.json │ │ ├── vl_1511.vl.json │ │ ├── vl_1512.vl.json │ │ ├── vl_1513.vl.json │ │ ├── vl_1514.vl.json │ │ ├── vl_1515.vl.json │ │ ├── vl_1516.vl.json │ │ ├── vl_1517.vl.json │ │ ├── vl_1518.vl.json │ │ ├── vl_1519.vl.json │ │ ├── vl_1520.vl.json │ │ ├── vl_1521.vl.json │ │ ├── vl_1522.vl.json │ │ ├── vl_1523.vl.json │ │ ├── vl_1524.vl.json │ │ ├── vl_1525.vl.json │ │ ├── vl_1526.vl.json │ │ ├── vl_1527.vl.json │ │ ├── vl_1528.vl.json │ │ ├── vl_1529.vl.json │ │ ├── vl_1530.vl.json │ │ ├── vl_1531.vl.json │ │ ├── vl_1532.vl.json │ │ ├── vl_1533.vl.json │ │ ├── vl_1534.vl.json │ │ ├── vl_1535.vl.json │ │ ├── vl_1536.vl.json │ │ ├── vl_1537.vl.json │ │ ├── vl_1538.vl.json │ │ ├── vl_1539.vl.json │ │ ├── vl_1540.vl.json │ │ ├── vl_1541.vl.json │ │ ├── vl_1542.vl.json │ │ ├── vl_1543.vl.json │ │ ├── vl_1544.vl.json │ │ ├── vl_1545.vl.json │ │ ├── vl_1546.vl.json │ │ ├── vl_1547.vl.json │ │ ├── vl_1548.vl.json │ │ ├── vl_1549.vl.json │ │ ├── vl_1550.vl.json │ │ ├── vl_1551.vl.json │ │ ├── vl_1552.vl.json │ │ ├── vl_1553.vl.json │ │ ├── vl_1554.vl.json │ │ ├── vl_1555.vl.json │ │ ├── vl_1556.vl.json │ │ ├── vl_1557.vl.json │ │ ├── vl_1558.vl.json │ │ ├── vl_1559.vl.json │ │ ├── vl_1560.vl.json │ │ ├── vl_1561.vl.json │ │ ├── vl_1562.vl.json │ │ ├── vl_1563.vl.json │ │ ├── vl_1564.vl.json │ │ ├── vl_1565.vl.json │ │ ├── vl_1566.vl.json │ │ ├── vl_1567.vl.json │ │ ├── vl_1568.vl.json │ │ ├── vl_1569.vl.json │ │ ├── vl_1570.vl.json │ │ ├── vl_1571.vl.json │ │ ├── vl_1572.vl.json │ │ ├── vl_1573.vl.json │ │ ├── vl_1574.vl.json │ │ ├── vl_1575.vl.json │ │ ├── vl_1576.vl.json │ │ ├── vl_1577.vl.json │ │ ├── vl_1578.vl.json │ │ ├── vl_1579.vl.json │ │ ├── vl_1580.vl.json │ │ ├── vl_1581.vl.json │ │ ├── vl_1582.vl.json │ │ ├── vl_1583.vl.json │ │ ├── vl_1584.vl.json │ │ ├── vl_1585.vl.json │ │ ├── vl_1586.vl.json │ │ ├── vl_1587.vl.json │ │ ├── vl_1588.vl.json │ │ ├── vl_1589.vl.json │ │ ├── vl_1590.vl.json │ │ ├── vl_1591.vl.json │ │ ├── vl_1592.vl.json │ │ ├── vl_1593.vl.json │ │ ├── vl_1594.vl.json │ │ ├── vl_1595.vl.json │ │ ├── vl_1596.vl.json │ │ ├── vl_1597.vl.json │ │ ├── vl_1598.vl.json │ │ ├── vl_1599.vl.json │ │ ├── vl_1600.vl.json │ │ ├── vl_1601.vl.json │ │ ├── vl_1602.vl.json │ │ ├── vl_1603.vl.json │ │ ├── vl_1604.vl.json │ │ ├── vl_1605.vl.json │ │ ├── vl_1606.vl.json │ │ ├── vl_1607.vl.json │ │ ├── vl_1608.vl.json │ │ ├── vl_1609.vl.json │ │ ├── vl_1610.vl.json │ │ ├── vl_1611.vl.json │ │ ├── vl_1612.vl.json │ │ ├── vl_1613.vl.json │ │ ├── vl_1614.vl.json │ │ ├── vl_1615.vl.json │ │ ├── vl_1616.vl.json │ │ ├── vl_1617.vl.json │ │ ├── vl_1618.vl.json │ │ ├── vl_1619.vl.json │ │ ├── vl_1620.vl.json │ │ ├── vl_1621.vl.json │ │ ├── vl_1622.vl.json │ │ ├── vl_1623.vl.json │ │ ├── vl_1624.vl.json │ │ ├── vl_1625.vl.json │ │ ├── vl_1626.vl.json │ │ ├── vl_1627.vl.json │ │ ├── vl_1628.vl.json │ │ ├── vl_1629.vl.json │ │ ├── vl_1630.vl.json │ │ ├── vl_1631.vl.json │ │ ├── vl_1632.vl.json │ │ ├── vl_1633.vl.json │ │ ├── vl_1634.vl.json │ │ ├── vl_1635.vl.json │ │ ├── vl_1636.vl.json │ │ ├── vl_1637.vl.json │ │ ├── vl_1638.vl.json │ │ ├── vl_1639.vl.json │ │ ├── vl_1640.vl.json │ │ ├── vl_1641.vl.json │ │ ├── vl_1642.vl.json │ │ ├── vl_1643.vl.json │ │ ├── vl_1644.vl.json │ │ ├── vl_1645.vl.json │ │ ├── vl_1646.vl.json │ │ ├── vl_1647.vl.json │ │ ├── vl_1648.vl.json │ │ ├── vl_1649.vl.json │ │ ├── vl_1650.vl.json │ │ ├── vl_1651.vl.json │ │ ├── vl_1652.vl.json │ │ ├── vl_1653.vl.json │ │ ├── vl_1654.vl.json │ │ ├── vl_1655.vl.json │ │ ├── vl_1656.vl.json │ │ ├── vl_1657.vl.json │ │ ├── vl_1658.vl.json │ │ ├── vl_1659.vl.json │ │ ├── vl_1660.vl.json │ │ ├── vl_1661.vl.json │ │ ├── vl_1662.vl.json │ │ ├── vl_1663.vl.json │ │ ├── vl_1664.vl.json │ │ ├── vl_1665.vl.json │ │ ├── vl_1666.vl.json │ │ ├── vl_1667.vl.json │ │ ├── vl_1668.vl.json │ │ ├── vl_1669.vl.json │ │ ├── vl_1670.vl.json │ │ ├── vl_1671.vl.json │ │ ├── vl_1672.vl.json │ │ ├── vl_1673.vl.json │ │ ├── vl_1674.vl.json │ │ ├── vl_1675.vl.json │ │ ├── vl_1676.vl.json │ │ ├── vl_1677.vl.json │ │ ├── vl_1678.vl.json │ │ ├── vl_1679.vl.json │ │ ├── vl_1680.vl.json │ │ ├── vl_1681.vl.json │ │ ├── vl_1682.vl.json │ │ ├── vl_1683.vl.json │ │ ├── vl_1684.vl.json │ │ ├── vl_1685.vl.json │ │ ├── vl_1686.vl.json │ │ ├── vl_1687.vl.json │ │ ├── vl_1688.vl.json │ │ ├── vl_1689.vl.json │ │ ├── vl_1690.vl.json │ │ ├── vl_1691.vl.json │ │ ├── vl_1692.vl.json │ │ ├── vl_1693.vl.json │ │ ├── vl_1694.vl.json │ │ ├── vl_1695.vl.json │ │ ├── vl_1696.vl.json │ │ ├── vl_1697.vl.json │ │ ├── vl_1698.vl.json │ │ ├── vl_1699.vl.json │ │ ├── vl_1700.vl.json │ │ ├── vl_1701.vl.json │ │ ├── vl_1702.vl.json │ │ ├── vl_1703.vl.json │ │ ├── vl_1704.vl.json │ │ ├── vl_1705.vl.json │ │ ├── vl_1706.vl.json │ │ ├── vl_1707.vl.json │ │ ├── vl_1708.vl.json │ │ ├── vl_1709.vl.json │ │ ├── vl_1710.vl.json │ │ ├── vl_1711.vl.json │ │ ├── vl_1712.vl.json │ │ ├── vl_1713.vl.json │ │ ├── vl_1714.vl.json │ │ ├── vl_1715.vl.json │ │ ├── vl_1716.vl.json │ │ ├── vl_1717.vl.json │ │ ├── vl_1718.vl.json │ │ ├── vl_1719.vl.json │ │ ├── vl_1720.vl.json │ │ ├── vl_1721.vl.json │ │ ├── vl_1722.vl.json │ │ ├── vl_1723.vl.json │ │ ├── vl_1724.vl.json │ │ ├── vl_1725.vl.json │ │ ├── vl_1726.vl.json │ │ ├── vl_1727.vl.json │ │ ├── vl_1728.vl.json │ │ ├── vl_1729.vl.json │ │ ├── vl_1730.vl.json │ │ ├── vl_1731.vl.json │ │ ├── vl_1732.vl.json │ │ ├── vl_1733.vl.json │ │ ├── vl_1734.vl.json │ │ ├── vl_1735.vl.json │ │ ├── vl_1736.vl.json │ │ ├── vl_1737.vl.json │ │ ├── vl_1738.vl.json │ │ ├── vl_1739.vl.json │ │ ├── vl_1740.vl.json │ │ ├── vl_1741.vl.json │ │ ├── vl_1742.vl.json │ │ ├── vl_1743.vl.json │ │ ├── vl_1744.vl.json │ │ ├── vl_1745.vl.json │ │ ├── vl_1746.vl.json │ │ ├── vl_1747.vl.json │ │ ├── vl_1748.vl.json │ │ ├── vl_1749.vl.json │ │ ├── vl_1750.vl.json │ │ ├── vl_1751.vl.json │ │ ├── vl_1752.vl.json │ │ ├── vl_1753.vl.json │ │ ├── vl_1754.vl.json │ │ ├── vl_1755.vl.json │ │ ├── vl_1756.vl.json │ │ ├── vl_1757.vl.json │ │ ├── vl_1758.vl.json │ │ ├── vl_1759.vl.json │ │ ├── vl_1760.vl.json │ │ ├── vl_1761.vl.json │ │ ├── vl_1762.vl.json │ │ ├── vl_1763.vl.json │ │ ├── vl_1764.vl.json │ │ ├── vl_1765.vl.json │ │ ├── vl_1766.vl.json │ │ ├── vl_1767.vl.json │ │ ├── vl_1768.vl.json │ │ ├── vl_1769.vl.json │ │ ├── vl_1770.vl.json │ │ ├── vl_1771.vl.json │ │ ├── vl_1772.vl.json │ │ ├── vl_1773.vl.json │ │ ├── vl_1774.vl.json │ │ ├── vl_1775.vl.json │ │ ├── vl_1776.vl.json │ │ ├── vl_1777.vl.json │ │ ├── vl_1778.vl.json │ │ ├── vl_1779.vl.json │ │ ├── vl_1780.vl.json │ │ ├── vl_1781.vl.json │ │ ├── vl_1782.vl.json │ │ ├── vl_1783.vl.json │ │ ├── vl_1784.vl.json │ │ ├── vl_1785.vl.json │ │ ├── vl_1786.vl.json │ │ ├── vl_1787.vl.json │ │ ├── vl_1788.vl.json │ │ ├── vl_1789.vl.json │ │ ├── vl_1790.vl.json │ │ ├── vl_1791.vl.json │ │ ├── vl_1792.vl.json │ │ ├── vl_1793.vl.json │ │ ├── vl_1794.vl.json │ │ ├── vl_1795.vl.json │ │ ├── vl_1796.vl.json │ │ ├── vl_1797.vl.json │ │ ├── vl_1798.vl.json │ │ ├── vl_1799.vl.json │ │ ├── vl_1800.vl.json │ │ ├── vl_1801.vl.json │ │ ├── vl_1802.vl.json │ │ ├── vl_1803.vl.json │ │ ├── vl_1804.vl.json │ │ ├── vl_1805.vl.json │ │ ├── vl_1806.vl.json │ │ ├── vl_1807.vl.json │ │ ├── vl_1808.vl.json │ │ ├── vl_1809.vl.json │ │ ├── vl_1810.vl.json │ │ ├── vl_1811.vl.json │ │ ├── vl_1812.vl.json │ │ ├── vl_1813.vl.json │ │ ├── vl_1814.vl.json │ │ ├── vl_1815.vl.json │ │ ├── vl_1816.vl.json │ │ ├── vl_1817.vl.json │ │ ├── vl_1818.vl.json │ │ ├── vl_1819.vl.json │ │ ├── vl_1820.vl.json │ │ ├── vl_1821.vl.json │ │ ├── vl_1822.vl.json │ │ ├── vl_1823.vl.json │ │ ├── vl_1824.vl.json │ │ ├── vl_1825.vl.json │ │ ├── vl_1826.vl.json │ │ ├── vl_1827.vl.json │ │ ├── vl_1828.vl.json │ │ ├── vl_1829.vl.json │ │ ├── vl_1830.vl.json │ │ ├── vl_1831.vl.json │ │ ├── vl_1832.vl.json │ │ ├── vl_1833.vl.json │ │ ├── vl_1834.vl.json │ │ ├── vl_1835.vl.json │ │ ├── vl_1836.vl.json │ │ ├── vl_1837.vl.json │ │ ├── vl_1838.vl.json │ │ ├── vl_1839.vl.json │ │ ├── vl_1840.vl.json │ │ ├── vl_1841.vl.json │ │ ├── vl_1842.vl.json │ │ ├── vl_1843.vl.json │ │ ├── vl_1844.vl.json │ │ ├── vl_1845.vl.json │ │ ├── vl_1846.vl.json │ │ ├── vl_1847.vl.json │ │ ├── vl_1848.vl.json │ │ ├── vl_1849.vl.json │ │ ├── vl_1850.vl.json │ │ ├── vl_1851.vl.json │ │ ├── vl_1852.vl.json │ │ ├── vl_1853.vl.json │ │ ├── vl_1854.vl.json │ │ ├── vl_1855.vl.json │ │ ├── vl_1856.vl.json │ │ ├── vl_1857.vl.json │ │ ├── vl_1858.vl.json │ │ ├── vl_1859.vl.json │ │ ├── vl_1860.vl.json │ │ ├── vl_1861.vl.json │ │ ├── vl_1862.vl.json │ │ ├── vl_1863.vl.json │ │ ├── vl_1864.vl.json │ │ ├── vl_1865.vl.json │ │ ├── vl_1866.vl.json │ │ ├── vl_1867.vl.json │ │ ├── vl_1868.vl.json │ │ ├── vl_1869.vl.json │ │ ├── vl_1870.vl.json │ │ ├── vl_1871.vl.json │ │ ├── vl_1872.vl.json │ │ ├── vl_1873.vl.json │ │ ├── vl_1874.vl.json │ │ ├── vl_1875.vl.json │ │ ├── vl_1876.vl.json │ │ ├── vl_1877.vl.json │ │ ├── vl_1878.vl.json │ │ ├── vl_1879.vl.json │ │ ├── vl_1880.vl.json │ │ ├── vl_1881.vl.json │ │ ├── vl_1882.vl.json │ │ ├── vl_1883.vl.json │ │ ├── vl_1884.vl.json │ │ ├── vl_1885.vl.json │ │ ├── vl_1886.vl.json │ │ ├── vl_1887.vl.json │ │ ├── vl_1888.vl.json │ │ ├── vl_1889.vl.json │ │ ├── vl_1890.vl.json │ │ ├── vl_1891.vl.json │ │ ├── vl_1892.vl.json │ │ ├── vl_1893.vl.json │ │ ├── vl_1894.vl.json │ │ ├── vl_1895.vl.json │ │ ├── vl_1896.vl.json │ │ ├── vl_1897.vl.json │ │ ├── vl_1898.vl.json │ │ ├── vl_1899.vl.json │ │ ├── vl_1900.vl.json │ │ ├── vl_1901.vl.json │ │ ├── vl_1902.vl.json │ │ ├── vl_1903.vl.json │ │ ├── vl_1904.vl.json │ │ ├── vl_1905.vl.json │ │ ├── vl_1906.vl.json │ │ ├── vl_1907.vl.json │ │ ├── vl_1908.vl.json │ │ ├── vl_1909.vl.json │ │ ├── vl_1910.vl.json │ │ ├── vl_1911.vl.json │ │ ├── vl_1912.vl.json │ │ ├── vl_1913.vl.json │ │ ├── vl_1914.vl.json │ │ ├── vl_1915.vl.json │ │ ├── vl_1916.vl.json │ │ ├── vl_1917.vl.json │ │ ├── vl_1918.vl.json │ │ ├── vl_1919.vl.json │ │ ├── vl_1920.vl.json │ │ ├── vl_1921.vl.json │ │ ├── vl_1922.vl.json │ │ ├── vl_1923.vl.json │ │ ├── vl_1924.vl.json │ │ ├── vl_1925.vl.json │ │ ├── vl_1926.vl.json │ │ ├── vl_1927.vl.json │ │ ├── vl_1928.vl.json │ │ ├── vl_1929.vl.json │ │ ├── vl_1930.vl.json │ │ ├── vl_1931.vl.json │ │ ├── vl_1932.vl.json │ │ ├── vl_1933.vl.json │ │ ├── vl_1934.vl.json │ │ ├── vl_1935.vl.json │ │ ├── vl_1936.vl.json │ │ ├── vl_1937.vl.json │ │ ├── vl_1938.vl.json │ │ ├── vl_1939.vl.json │ │ ├── vl_1940.vl.json │ │ ├── vl_1941.vl.json │ │ ├── vl_1942.vl.json │ │ ├── vl_1943.vl.json │ │ ├── vl_1944.vl.json │ │ ├── vl_1945.vl.json │ │ ├── vl_1946.vl.json │ │ ├── vl_1947.vl.json │ │ ├── vl_1948.vl.json │ │ ├── vl_1949.vl.json │ │ ├── vl_1950.vl.json │ │ ├── vl_1951.vl.json │ │ ├── vl_1952.vl.json │ │ ├── vl_1953.vl.json │ │ ├── vl_1954.vl.json │ │ ├── vl_1955.vl.json │ │ ├── vl_1956.vl.json │ │ ├── vl_1957.vl.json │ │ ├── vl_1958.vl.json │ │ ├── vl_1959.vl.json │ │ ├── vl_1960.vl.json │ │ ├── vl_1961.vl.json │ │ ├── vl_1962.vl.json │ │ ├── vl_1963.vl.json │ │ ├── vl_1964.vl.json │ │ ├── vl_1965.vl.json │ │ ├── vl_1966.vl.json │ │ ├── vl_1967.vl.json │ │ ├── vl_1968.vl.json │ │ ├── vl_1969.vl.json │ │ ├── vl_1970.vl.json │ │ ├── vl_1971.vl.json │ │ ├── vl_1972.vl.json │ │ ├── vl_1973.vl.json │ │ ├── vl_1974.vl.json │ │ ├── vl_1975.vl.json │ │ ├── vl_1976.vl.json │ │ ├── vl_1977.vl.json │ │ ├── vl_1978.vl.json │ │ ├── vl_1979.vl.json │ │ └── vl_1980.vl.json │ ├── chart_48 │ │ ├── vl_00.vl.json │ │ ├── vl_01.vl.json │ │ ├── vl_02.vl.json │ │ ├── vl_03.vl.json │ │ ├── vl_04.vl.json │ │ ├── vl_05.vl.json │ │ ├── vl_06.vl.json │ │ ├── vl_07.vl.json │ │ ├── vl_08.vl.json │ │ ├── vl_09.vl.json │ │ ├── vl_10.vl.json │ │ ├── vl_11.vl.json │ │ ├── vl_12.vl.json │ │ ├── vl_13.vl.json │ │ ├── vl_14.vl.json │ │ ├── vl_15.vl.json │ │ ├── vl_16.vl.json │ │ ├── vl_17.vl.json │ │ ├── vl_18.vl.json │ │ ├── vl_19.vl.json │ │ ├── vl_20.vl.json │ │ ├── vl_21.vl.json │ │ ├── vl_22.vl.json │ │ ├── vl_23.vl.json │ │ ├── vl_24.vl.json │ │ ├── vl_25.vl.json │ │ ├── vl_26.vl.json │ │ ├── vl_27.vl.json │ │ ├── vl_28.vl.json │ │ ├── vl_29.vl.json │ │ ├── vl_30.vl.json │ │ ├── vl_31.vl.json │ │ ├── vl_32.vl.json │ │ ├── vl_33.vl.json │ │ ├── vl_34.vl.json │ │ ├── vl_35.vl.json │ │ ├── vl_36.vl.json │ │ ├── vl_37.vl.json │ │ ├── vl_38.vl.json │ │ ├── vl_39.vl.json │ │ ├── vl_40.vl.json │ │ ├── vl_41.vl.json │ │ ├── vl_42.vl.json │ │ ├── vl_43.vl.json │ │ ├── vl_44.vl.json │ │ ├── vl_45.vl.json │ │ ├── vl_46.vl.json │ │ └── vl_47.vl.json │ ├── chart_48_img │ │ ├── 1.simple │ │ │ ├── visualization (0).png │ │ │ └── visualization (42).png │ │ ├── 2.medium │ │ │ ├── visualization (26).png │ │ │ ├── visualization (29).png │ │ │ ├── visualization (32).png │ │ │ ├── visualization (36).png │ │ │ └── visualization (45).png │ │ ├── 3.complex │ │ │ ├── visualization (1).png │ │ │ ├── visualization (11).png │ │ │ ├── visualization (12).png │ │ │ ├── visualization (13).png │ │ │ ├── visualization (15).png │ │ │ ├── visualization (19).png │ │ │ ├── visualization (2).png │ │ │ ├── visualization (22).png │ │ │ ├── visualization (23).png │ │ │ ├── visualization (25).png │ │ │ ├── visualization (27).png │ │ │ ├── visualization (3).png │ │ │ ├── visualization (30).png │ │ │ ├── visualization (38).png │ │ │ ├── visualization (4).png │ │ │ ├── visualization (41).png │ │ │ ├── visualization (43).png │ │ │ └── visualization (44).png │ │ └── 4.extracomplex │ │ │ ├── visualization (10).png │ │ │ ├── visualization (14).png │ │ │ ├── visualization (16).png │ │ │ ├── visualization (17).png │ │ │ ├── visualization (18).png │ │ │ ├── visualization (20).png │ │ │ ├── visualization (21).png │ │ │ ├── visualization (24).png │ │ │ ├── visualization (28).png │ │ │ ├── visualization (31).png │ │ │ ├── visualization (33).png │ │ │ ├── visualization (34).png │ │ │ ├── visualization (35).png │ │ │ ├── visualization (37).png │ │ │ ├── visualization (39).png │ │ │ ├── visualization (40).png │ │ │ ├── visualization (46).png │ │ │ ├── visualization (47).png │ │ │ ├── visualization (5).png │ │ │ ├── visualization (6).png │ │ │ ├── visualization (7).png │ │ │ ├── visualization (8).png │ │ │ └── visualization (9).png │ ├── chart_48_in │ │ ├── vl_00.vl.json │ │ ├── vl_01.vl.json │ │ ├── vl_02.vl.json │ │ ├── vl_03.vl.json │ │ ├── vl_04.vl.json │ │ ├── vl_05.vl.json │ │ ├── vl_06.vl.json │ │ ├── vl_07.vl.json │ │ ├── vl_08.vl.json │ │ ├── vl_09.vl.json │ │ ├── vl_10.vl.json │ │ ├── vl_11.vl.json │ │ ├── vl_12.vl.json │ │ ├── vl_13.vl.json │ │ ├── vl_14.vl.json │ │ ├── vl_15.vl.json │ │ ├── vl_16.vl.json │ │ ├── vl_17.vl.json │ │ ├── vl_18.vl.json │ │ ├── vl_19.vl.json │ │ ├── vl_20.vl.json │ │ ├── vl_21.vl.json │ │ ├── vl_22.vl.json │ │ ├── vl_23.vl.json │ │ ├── vl_24.vl.json │ │ ├── vl_25.vl.json │ │ ├── vl_26.vl.json │ │ ├── vl_27.vl.json │ │ ├── vl_28.vl.json │ │ ├── vl_29.vl.json │ │ ├── vl_30.vl.json │ │ ├── vl_31.vl.json │ │ ├── vl_32.vl.json │ │ ├── vl_33.vl.json │ │ ├── vl_34.vl.json │ │ ├── vl_35.vl.json │ │ ├── vl_36.vl.json │ │ ├── vl_37.vl.json │ │ ├── vl_38.vl.json │ │ ├── vl_39.vl.json │ │ ├── vl_40.vl.json │ │ ├── vl_41.vl.json │ │ ├── vl_42.vl.json │ │ ├── vl_43.vl.json │ │ ├── vl_44.vl.json │ │ ├── vl_45.vl.json │ │ ├── vl_46.vl.json │ │ └── vl_47.vl.json │ ├── csv_48_process │ │ ├── d_00.csv │ │ ├── d_01.csv │ │ ├── d_02.csv │ │ ├── d_03.csv │ │ ├── d_04.csv │ │ ├── d_05.csv │ │ ├── d_06.csv │ │ ├── d_07.csv │ │ ├── d_08.csv │ │ ├── d_09.csv │ │ ├── d_10.csv │ │ ├── d_11.csv │ │ ├── d_12.csv │ │ ├── d_13.csv │ │ ├── d_14.csv │ │ ├── d_15.csv │ │ ├── d_16.csv │ │ ├── d_17.csv │ │ ├── d_18.csv │ │ ├── d_19.csv │ │ ├── d_20.csv │ │ ├── d_21.csv │ │ ├── d_22.csv │ │ ├── d_23.csv │ │ ├── d_24.csv │ │ ├── d_25.csv │ │ ├── d_26.csv │ │ ├── d_27.csv │ │ ├── d_28.csv │ │ ├── d_29.csv │ │ ├── d_30.csv │ │ ├── d_31.csv │ │ ├── d_32.csv │ │ ├── d_33.csv │ │ ├── d_34.csv │ │ ├── d_35.csv │ │ ├── d_36.csv │ │ ├── d_37.csv │ │ ├── d_38.csv │ │ ├── d_39.csv │ │ ├── d_40.csv │ │ ├── d_41.csv │ │ ├── d_42.csv │ │ ├── d_43.csv │ │ ├── d_44.csv │ │ ├── d_45.csv │ │ ├── d_46.csv │ │ └── d_47.csv │ └── metadata.xlsx ├── explorer.html ├── index.html └── static │ ├── css │ ├── bulma-carousel.min.css │ ├── bulma-slider.min.css │ ├── bulma.css.map.txt │ ├── bulma.min.css │ ├── fontawesome.all.min.css │ └── index.css │ ├── img │ ├── fig3.png │ ├── paraphrase.png │ ├── sample.png │ └── teaser.png │ └── js │ ├── bulma-carousel.js │ ├── bulma-carousel.min.js │ ├── bulma-slider.js │ ├── bulma-slider.min.js │ ├── fontawesome.all.min.js │ └── index.js ├── exp ├── .gitignore ├── analysis │ ├── compute_diversity.py │ ├── data │ │ ├── one_axis.csv │ │ ├── original.csv │ │ ├── strata.csv │ │ └── two_axes.csv │ ├── lexical.py │ ├── metric.py │ └── stratified_sample.py ├── coding │ ├── .gitignore │ ├── automatic_coding.py │ └── result │ │ ├── code.xlsx │ │ └── freq.csv ├── d1_description.csv ├── d2_utterance.csv ├── d2_utterance │ ├── d2_1process.py │ ├── d2_2generation.py │ ├── d2_3paraphrase.py │ ├── d2_4paraphrase_two.py │ ├── d2_5metric.py │ ├── data │ │ ├── cars.csv │ │ ├── movies.csv │ │ ├── superstore.csv │ │ └── vlSpecs.json │ ├── nlv1_before.csv │ ├── nlv2_after.csv │ └── result │ │ ├── task2.csv │ │ ├── task4.csv │ │ ├── task4_metrics.csv │ │ ├── task4_selected_0.csv │ │ ├── task4_two.csv │ │ ├── task4_two_metrics.csv │ │ └── task4_two_selected_0.csv ├── d3_question.csv ├── d3_question │ ├── d3_1genenration.py │ ├── d3_2paraphrase.py │ ├── d3_3paraphrase_two.py │ ├── d3_4metric.py │ └── result │ │ ├── task3.csv │ │ ├── task4.csv │ │ ├── task4_metrics.csv │ │ ├── task4_selected_0.csv │ │ ├── task4_two.csv │ │ ├── task4_two_metrics.csv │ │ └── task4_two_selected_0.csv ├── finetuning │ ├── api_manage.py │ ├── .gitignore │ ├── preprocess.py │ ├── test.py │ └── train.py └── gold │ ├── exp_metric.py │ ├── exp_metric_org.py │ ├── exp_paraphrase.py │ └── result │ ├── gold.csv │ ├── metrics_task2_original.csv │ ├── metrics_task3_original.csv │ ├── metrics_task4_2.csv │ ├── metrics_task4_3.csv │ ├── metrics_task4_two_2.csv │ ├── metrics_task4_two_3.csv │ ├── task4_2_selected.csv │ ├── task4_3_selected.csv │ ├── task4_two_2_selected.csv │ └── task4_two_3_selected.csv ├── framework ├── preprocess.py ├── result │ ├── l1_description.json │ ├── task1.csv │ ├── task1_L1.csv │ ├── task1_L23.csv │ ├── task2.csv │ └── task3.csv ├── task1_L1.py ├── task1_L2.py ├── task2.py ├── task3.py ├── task4.py └── utils.py ├── framework_sample ├── sample.vl.json ├── superstore.csv ├── task1_L1.py ├── task1_L2.py ├── task2.py ├── task3.py ├── task4_1.py ├── task4_all1.py └── task4_all2.py ├── process ├── htmls │ ├── p0_1github_crawl.py │ ├── p0_2github_merge.py │ ├── p0_3get_license.py │ ├── p2_remove_duplicate.py │ ├── p3_copy_selected_files.py │ └── p4_make_html.py ├── js │ ├── p0_1github_crawl.py │ ├── p0_2github_merge.py │ ├── p0_3get_license.py │ ├── p2_remove_duplicate.py │ ├── p3_copy_selected_files.py │ └── p4_make_html.py ├── v2v3vljson │ ├── p0_1github_crawl.py │ ├── p0_2github_merge.py │ ├── p0_3get_license.py │ ├── p0_4save_json.py │ ├── p2_remove_duplicate.py │ ├── p3_copy_selected_files.py │ └── p4_make_html.py ├── v4 │ ├── v4_p0_1github_crawl.py │ ├── v4_p0_2github_merge.py │ ├── v4_p0_3get_license.py │ ├── v4_p0_4save_json.py │ ├── v4_p10_copy_selected_files.py │ ├── v4_p11_make_html.py │ ├── v4_p2_remove_duplicate.py │ ├── v4_p3_copy_selected_files.py │ ├── v4_p4_make_html.py │ ├── v4_p5_copy_selected_files.py │ ├── v4_p6_copy_selected_files.py │ ├── v4_p7_make_html.py │ ├── v4_p8_copy_selected_files.py │ └── v4_p9_make_html.py ├── v5 │ ├── v5_p1_copy_selected_files.py │ ├── v5_p2_remove_duplicate.py │ ├── v5_p3_copy_selected_files.py │ ├── v5_p4_make_html.py │ ├── v5_p5_copy_selected_files.py │ ├── v5_p6_remove_duplicate.py │ ├── v5_p7_analyze.py │ ├── v5_p8_complexity.py │ └── v5_p9_complexity2.py ├── v6 │ ├── p10_chart_level.py │ ├── p11_generate_input.py │ ├── p12_composite.py │ ├── p13_similarity.py │ ├── p1_0copy_selected_files.py │ ├── p1_1move_vlv2v3.py │ ├── p1_2move_htmls.py │ ├── p1_3move_vgvgjson.py │ ├── p1_4move_vl.py │ ├── p1_5move_js.py │ ├── p2_remove_duplicate.py │ ├── p3_copy_selected_files.py │ ├── p4_make_html.py │ ├── p7_analyze.py │ ├── p8_complexity.py │ ├── p9_complexity2.py │ └── sort.py ├── vgvgjson │ ├── p0_1github_crawl.py │ ├── p0_2github_merge.py │ ├── p0_3get_license.py │ ├── p0_4save_json.py │ ├── p2_remove_duplicate.py │ └── p4_make_html.py └── vl │ ├── p0_1github_crawl.py │ ├── p0_2github_merge.py │ ├── p0_3get_license.py │ ├── p0_4save_json.py │ ├── p2_remove_duplicate.py │ ├── p3_copy_selected_files.py │ ├── p4_make_html.py │ ├── p5_copy_selected_files.py │ └── p6_copy_selected_files.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/.gitignore -------------------------------------------------------------------------------- /app/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/.gitignore -------------------------------------------------------------------------------- /app/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/README.md -------------------------------------------------------------------------------- /app/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/package-lock.json -------------------------------------------------------------------------------- /app/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/package.json -------------------------------------------------------------------------------- /app/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/public/favicon.ico -------------------------------------------------------------------------------- /app/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/public/index.html -------------------------------------------------------------------------------- /app/client/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/public/logo192.png -------------------------------------------------------------------------------- /app/client/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/public/logo512.png -------------------------------------------------------------------------------- /app/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/public/manifest.json -------------------------------------------------------------------------------- /app/client/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/public/robots.txt -------------------------------------------------------------------------------- /app/client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/src/App.css -------------------------------------------------------------------------------- /app/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/src/App.js -------------------------------------------------------------------------------- /app/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/src/index.js -------------------------------------------------------------------------------- /app/client/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/src/redux/store.js -------------------------------------------------------------------------------- /app/client/src/redux/textSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/client/src/redux/textSlice.js -------------------------------------------------------------------------------- /app/server/data/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/LICENSE -------------------------------------------------------------------------------- /app/server/data/chart/0.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/0.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/1.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/1.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/2.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/2.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/3.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/3.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/4.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/4.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/5.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/5.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/6.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/6.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/7.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/7.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/8.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/8.vl.json -------------------------------------------------------------------------------- /app/server/data/chart/9.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/chart/9.vl.json -------------------------------------------------------------------------------- /app/server/data/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/process.py -------------------------------------------------------------------------------- /app/server/data/table.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/table.pdf -------------------------------------------------------------------------------- /app/server/data/tech/0.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/0.csv -------------------------------------------------------------------------------- /app/server/data/tech/1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/1.csv -------------------------------------------------------------------------------- /app/server/data/tech/2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/2.csv -------------------------------------------------------------------------------- /app/server/data/tech/3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/3.csv -------------------------------------------------------------------------------- /app/server/data/tech/4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/4.csv -------------------------------------------------------------------------------- /app/server/data/tech/5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/5.csv -------------------------------------------------------------------------------- /app/server/data/tech/6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/6.csv -------------------------------------------------------------------------------- /app/server/data/tech/7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/7.csv -------------------------------------------------------------------------------- /app/server/data/tech/8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/8.csv -------------------------------------------------------------------------------- /app/server/data/tech/9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/data/tech/9.csv -------------------------------------------------------------------------------- /app/server/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/prompt.py -------------------------------------------------------------------------------- /app/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/server.py -------------------------------------------------------------------------------- /app/server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/app/server/utils.py -------------------------------------------------------------------------------- /benchmark/LICENSE-chartseer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/LICENSE-chartseer -------------------------------------------------------------------------------- /benchmark/LICENSE-data2vis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/LICENSE-data2vis -------------------------------------------------------------------------------- /benchmark/LICENSE-nvbench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/LICENSE-nvbench -------------------------------------------------------------------------------- /benchmark/LICENSE-vega-lite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/LICENSE-vega-lite.txt -------------------------------------------------------------------------------- /benchmark/VisQA-release/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /benchmark/VisQA-release/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/VisQA-release/readme.md -------------------------------------------------------------------------------- /benchmark/chartseer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/chartseer/.gitignore -------------------------------------------------------------------------------- /benchmark/chartseer/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/chartseer/preprocess.py -------------------------------------------------------------------------------- /benchmark/data2vis/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/data2vis/.gitignore -------------------------------------------------------------------------------- /benchmark/data2vis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/data2vis/README.md -------------------------------------------------------------------------------- /benchmark/nvBench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/nvBench/.gitignore -------------------------------------------------------------------------------- /benchmark/nvBench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/nvBench/README.md -------------------------------------------------------------------------------- /benchmark/nvBench/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/nvBench/save.py -------------------------------------------------------------------------------- /benchmark/vega-lite-v4/.gitignore: -------------------------------------------------------------------------------- 1 | data/ -------------------------------------------------------------------------------- /benchmark/vega-lite-v4/a_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/vega-lite-v4/a_check.py -------------------------------------------------------------------------------- /benchmark/vega-lite/a_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/vega-lite/a_check.py -------------------------------------------------------------------------------- /benchmark/vega-lite/area.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/vega-lite/area.vl.json -------------------------------------------------------------------------------- /benchmark/vega-lite/bar.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/vega-lite/bar.vl.json -------------------------------------------------------------------------------- /benchmark/vega-lite/line.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/benchmark/vega-lite/line.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0000.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0000.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0001.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0001.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0002.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0002.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0003.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0003.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0004.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0004.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0005.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0005.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0006.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0006.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0007.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0007.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0008.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0008.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0009.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0009.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0010.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0010.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0011.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0011.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0012.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0012.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0013.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0013.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0014.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0014.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0015.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0015.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0016.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0016.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0017.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0017.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0018.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0018.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0019.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0019.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0020.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0020.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0021.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0021.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0022.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0022.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0023.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0023.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0024.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0024.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0025.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0025.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0026.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0026.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0027.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0027.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0028.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0028.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0029.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0029.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0030.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0030.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0031.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0031.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0032.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0032.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0033.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0033.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0034.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0034.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0035.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0035.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0036.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0036.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0037.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0037.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0038.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0038.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0039.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0039.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0040.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0040.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0041.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0041.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0042.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0042.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0043.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0043.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0044.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0044.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0045.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0045.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0046.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0046.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0047.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0047.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0048.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0048.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0049.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0049.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0050.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0050.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0051.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0051.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0052.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0052.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0053.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0053.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0054.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0054.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0055.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0055.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0056.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0056.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0057.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0057.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0058.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0058.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0059.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0059.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0060.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0060.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0061.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0061.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0062.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0062.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0063.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0063.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0064.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0064.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0065.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0065.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0066.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0066.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0067.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0067.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0068.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0068.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0069.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0069.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0070.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0070.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0071.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0071.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0072.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0072.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0073.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0073.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0074.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0074.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0075.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0075.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0076.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0076.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0077.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0077.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0078.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0078.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0079.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0079.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0080.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0080.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0081.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0081.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0082.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0082.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0083.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0083.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0084.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0084.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0085.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0085.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0086.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0086.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0087.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0087.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0088.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0088.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0089.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0089.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0090.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0090.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0091.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0091.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0092.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0092.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0093.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0093.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0094.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0094.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0095.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0095.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0096.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0096.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0097.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0097.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0098.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0098.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0099.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0099.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0100.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0100.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0101.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0101.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0102.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0102.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0103.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0103.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0104.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0104.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0105.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0105.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0106.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0106.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0107.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0107.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0108.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0108.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0109.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0109.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0110.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0110.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0111.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0111.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0112.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0112.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0113.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0113.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0114.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0114.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0115.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0115.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0116.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0116.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0117.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0117.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0118.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0118.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0119.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0119.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0120.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0120.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0121.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0121.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0122.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0122.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0123.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0123.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0124.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0124.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0125.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0125.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0126.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0126.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0127.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0127.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0128.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0128.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0129.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0129.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0130.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0130.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0131.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0131.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0132.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0132.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0133.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0133.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0134.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0134.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0135.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0135.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0136.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0136.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0137.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0137.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0138.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0138.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0139.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0139.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0140.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0140.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0141.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0141.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0142.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0142.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0143.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0143.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0144.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0144.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0145.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0145.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0146.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0146.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0147.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0147.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0148.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0148.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0149.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0149.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0150.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0150.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0151.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0151.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0152.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0152.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0153.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0153.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0154.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0154.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0155.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0155.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0156.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0156.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0157.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0157.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0158.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0158.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0159.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0159.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0160.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0160.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0161.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0161.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0162.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0162.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0163.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0163.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0164.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0164.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0165.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0165.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0166.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0166.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0167.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0167.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0168.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0168.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0169.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0169.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0170.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0170.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0171.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0171.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0172.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0172.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0173.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0173.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0174.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0174.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0175.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0175.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0176.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0176.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0177.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0177.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0178.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0178.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0179.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0179.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0180.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0180.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0181.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0181.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0182.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0182.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0183.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0183.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0184.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0184.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0185.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0185.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0186.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0186.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0187.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0187.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0188.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0188.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0189.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0189.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0190.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0190.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0191.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0191.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0192.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0192.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0193.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0193.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0194.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0194.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0195.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0195.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0196.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0196.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0197.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0197.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0198.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0198.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0199.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0199.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0200.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0200.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0201.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0201.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0202.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0202.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0203.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0203.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0204.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0204.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0205.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0205.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0206.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0206.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0207.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0207.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0208.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0208.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0209.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0209.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0210.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0210.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0211.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0211.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0212.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0212.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0213.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0213.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0214.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0214.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0215.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0215.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0216.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0216.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0217.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0217.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0218.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0218.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0219.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0219.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0220.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0220.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0221.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0221.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0222.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0222.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0223.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0223.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0224.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0224.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0225.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0225.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0226.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0226.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0227.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0227.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0228.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0228.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0229.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0229.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0230.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0230.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0231.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0231.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0232.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0232.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0233.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0233.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0234.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0234.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0235.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0235.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0236.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0236.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0237.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0237.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0238.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0238.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0239.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0239.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0240.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0240.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0241.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0241.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0242.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0242.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0243.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0243.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0244.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0244.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0245.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0245.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0246.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0246.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0247.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0247.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0248.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0248.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0249.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0249.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0250.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0250.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0251.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0251.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0252.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0252.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0253.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0253.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0254.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0254.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0255.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0255.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0256.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0256.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0257.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0257.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0258.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0258.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0259.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0259.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0260.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0260.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0261.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0261.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0262.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0262.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0263.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0263.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0264.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0264.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0265.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0265.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0266.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0266.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0267.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0267.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0268.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0268.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0269.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0269.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0270.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0270.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0271.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0271.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0272.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0272.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0273.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0273.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0274.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0274.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0275.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0275.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0276.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0276.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0277.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0277.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0278.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0278.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0279.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0279.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0280.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0280.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0281.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0281.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0282.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0282.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0283.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0283.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0284.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0284.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0285.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0285.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0286.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0286.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0287.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0287.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0288.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0288.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0289.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0289.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0290.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0290.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0291.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0291.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0292.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0292.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0293.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0293.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0294.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0294.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0295.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0295.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0296.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0296.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0297.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0297.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0298.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0298.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0299.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0299.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0300.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0300.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0301.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0301.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0302.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0302.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0303.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0303.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0304.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0304.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0305.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0305.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0306.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0306.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0307.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0307.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0308.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0308.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0309.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0309.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0310.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0310.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0311.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0311.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0312.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0312.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0313.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0313.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0314.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0314.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0315.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0315.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0316.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0316.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0317.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0317.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0318.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0318.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0319.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0319.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0320.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0320.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0321.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0321.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0322.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0322.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0323.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0323.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0324.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0324.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0325.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0325.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0326.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0326.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0327.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0327.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0328.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0328.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0329.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0329.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0330.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0330.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0331.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0331.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0332.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0332.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0333.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0333.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0334.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0334.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0335.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0335.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0336.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0336.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0337.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0337.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0338.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0338.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0339.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0339.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0340.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0340.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0341.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0341.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0342.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0342.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0343.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0343.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0344.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0344.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0345.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0345.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0346.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0346.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0347.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0347.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0348.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0348.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0349.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0349.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0350.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0350.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0351.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0351.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0352.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0352.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0353.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0353.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0354.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0354.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0355.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0355.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0356.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0356.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0357.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0357.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0358.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0358.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0359.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0359.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0360.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0360.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0361.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0361.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0362.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0362.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0363.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0363.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0364.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0364.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0365.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0365.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0366.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0366.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0367.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0367.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0368.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0368.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0369.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0369.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0370.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0370.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0371.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0371.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0372.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0372.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0373.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0373.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0374.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0374.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0375.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0375.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0376.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0376.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0377.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0377.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0378.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0378.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0379.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0379.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0380.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0380.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0381.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0381.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0382.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0382.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0383.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0383.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0384.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0384.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0385.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0385.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0386.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0386.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0387.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0387.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0388.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0388.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0389.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0389.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0390.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0390.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0391.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0391.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0392.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0392.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0393.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0393.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0394.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0394.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0395.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0395.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0396.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0396.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0397.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0397.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0398.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0398.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0399.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0399.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0400.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0400.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0401.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0401.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0402.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0402.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0403.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0403.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0404.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0404.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0405.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0405.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0406.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0406.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0407.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0407.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0408.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0408.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0409.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0409.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0410.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0410.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0411.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0411.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0412.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0412.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0413.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0413.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0414.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0414.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0415.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0415.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0416.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0416.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0417.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0417.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0418.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0418.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0419.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0419.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0420.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0420.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0421.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0421.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0422.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0422.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0423.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0423.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0424.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0424.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0425.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0425.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0426.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0426.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0427.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0427.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0428.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0428.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0429.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0429.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0430.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0430.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0431.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0431.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0432.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0432.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0433.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0433.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0434.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0434.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0435.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0435.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0436.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0436.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0437.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0437.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0438.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0438.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0439.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0439.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0440.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0440.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0441.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0441.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0442.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0442.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0443.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0443.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0444.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0444.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0445.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0445.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0446.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0446.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0447.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0447.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0448.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0448.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0449.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0449.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0450.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0450.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0451.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0451.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0452.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0452.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0453.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0453.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0454.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0454.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0455.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0455.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0456.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0456.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0457.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0457.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0458.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0458.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0459.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0459.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0460.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0460.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0461.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0461.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0462.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0462.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0463.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0463.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0464.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0464.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0465.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0465.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0466.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0466.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0467.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0467.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0468.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0468.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0469.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0469.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0470.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0470.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0471.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0471.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0472.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0472.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0473.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0473.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0474.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0474.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0475.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0475.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0476.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0476.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0477.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0477.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0478.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0478.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0479.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0479.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0480.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0480.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0481.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0481.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0482.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0482.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0483.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0483.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0484.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0484.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0485.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0485.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0486.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0486.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0487.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0487.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0488.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0488.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0489.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0489.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0490.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0490.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0491.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0491.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0492.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0492.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0493.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0493.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0494.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0494.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0495.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0495.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0496.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0496.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0497.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0497.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0498.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0498.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0499.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0499.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0500.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0500.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0501.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0501.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0502.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0502.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0503.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0503.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0504.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0504.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0505.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0505.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0506.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0506.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0507.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0507.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0508.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0508.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0509.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0509.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0510.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0510.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0511.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0511.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0512.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0512.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0513.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0513.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0514.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0514.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0515.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0515.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0516.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0516.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0517.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0517.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0518.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0518.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0519.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0519.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0520.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0520.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0521.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0521.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0522.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0522.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0523.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0523.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0524.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0524.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0525.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0525.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0526.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0526.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0527.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0527.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0528.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0528.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0529.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0529.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0530.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0530.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0531.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0531.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0532.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0532.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0533.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0533.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0534.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0534.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0535.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0535.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0536.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0536.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0537.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0537.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0538.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0538.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0539.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0539.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0540.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0540.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0541.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0541.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0542.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0542.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0543.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0543.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0544.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0544.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0545.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0545.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0546.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0546.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0547.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0547.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0548.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0548.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0549.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0549.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0550.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0550.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0551.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0551.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0552.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0552.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0553.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0553.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0554.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0554.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0555.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0555.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0556.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0556.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0557.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0557.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0558.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0558.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0559.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0559.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0560.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0560.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0561.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0561.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0562.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0562.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0563.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0563.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0564.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0564.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0565.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0565.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0566.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0566.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0567.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0567.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0568.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0568.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0569.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0569.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0570.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0570.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0571.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0571.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0572.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0572.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0573.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0573.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0574.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0574.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0575.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0575.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0576.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0576.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0577.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0577.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0578.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0578.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0579.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0579.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0580.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0580.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0581.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0581.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0582.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0582.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0583.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0583.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0584.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0584.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0585.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0585.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0586.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0586.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0587.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0587.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0588.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0588.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0589.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0589.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0590.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0590.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0591.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0591.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0592.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0592.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0593.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0593.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0594.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0594.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0595.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0595.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0596.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0596.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0597.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0597.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0598.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0598.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0599.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0599.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0600.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0600.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0601.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0601.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0602.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0602.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0603.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0603.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0604.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0604.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0605.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0605.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0606.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0606.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0607.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0607.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0608.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0608.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0609.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0609.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0610.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0610.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0611.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0611.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0612.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0612.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0613.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0613.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0614.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0614.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0615.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0615.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0616.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0616.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0617.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0617.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0618.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0618.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0619.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0619.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0620.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0620.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0621.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0621.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0622.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0622.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0623.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0623.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0624.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0624.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0625.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0625.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0626.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0626.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0627.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0627.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0628.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0628.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0629.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0629.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0630.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0630.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0631.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0631.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0632.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0632.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0633.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0633.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0634.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0634.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0635.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0635.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0636.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0636.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0637.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0637.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0638.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0638.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0639.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0639.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0640.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0640.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0641.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0641.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0642.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0642.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0643.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0643.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0644.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0644.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0645.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0645.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0646.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0646.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0647.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0647.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0648.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0648.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0649.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0649.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0650.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0650.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0651.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0651.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0652.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0652.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0653.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0653.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0654.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0654.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0655.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0655.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0656.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0656.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0657.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0657.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0658.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0658.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0659.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0659.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0660.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0660.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0661.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0661.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0662.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0662.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0663.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0663.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0664.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0664.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0665.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0665.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0666.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0666.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0667.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0667.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0668.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0668.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0669.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0669.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0670.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0670.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0671.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0671.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0672.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0672.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0673.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0673.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0674.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0674.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0675.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0675.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0676.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0676.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0677.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0677.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0678.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0678.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0679.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0679.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0680.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0680.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0681.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0681.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0682.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0682.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0683.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0683.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0684.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0684.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0685.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0685.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0686.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0686.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0687.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0687.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0688.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0688.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0689.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0689.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0690.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0690.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0691.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0691.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0692.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0692.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0693.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0693.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0694.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0694.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0695.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0695.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0696.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0696.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0697.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0697.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0698.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0698.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0699.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0699.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0700.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0700.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0701.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0701.vl.json -------------------------------------------------------------------------------- /docs/data/chart/vl_0702.vl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/chart/vl_0702.vl.json -------------------------------------------------------------------------------- /docs/data/metadata.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/data/metadata.xlsx -------------------------------------------------------------------------------- /docs/explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/explorer.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/static/css/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/css/bulma.min.css -------------------------------------------------------------------------------- /docs/static/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/css/index.css -------------------------------------------------------------------------------- /docs/static/img/fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/img/fig3.png -------------------------------------------------------------------------------- /docs/static/img/paraphrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/img/paraphrase.png -------------------------------------------------------------------------------- /docs/static/img/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/img/sample.png -------------------------------------------------------------------------------- /docs/static/img/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/img/teaser.png -------------------------------------------------------------------------------- /docs/static/js/bulma-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/js/bulma-slider.js -------------------------------------------------------------------------------- /docs/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/docs/static/js/index.js -------------------------------------------------------------------------------- /exp/.gitignore: -------------------------------------------------------------------------------- 1 | finetuning2/ -------------------------------------------------------------------------------- /exp/analysis/data/one_axis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/analysis/data/one_axis.csv -------------------------------------------------------------------------------- /exp/analysis/data/original.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/analysis/data/original.csv -------------------------------------------------------------------------------- /exp/analysis/data/strata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/analysis/data/strata.csv -------------------------------------------------------------------------------- /exp/analysis/data/two_axes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/analysis/data/two_axes.csv -------------------------------------------------------------------------------- /exp/analysis/lexical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/analysis/lexical.py -------------------------------------------------------------------------------- /exp/analysis/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/analysis/metric.py -------------------------------------------------------------------------------- /exp/coding/.gitignore: -------------------------------------------------------------------------------- 1 | result/d_* -------------------------------------------------------------------------------- /exp/coding/automatic_coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/coding/automatic_coding.py -------------------------------------------------------------------------------- /exp/coding/result/code.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/coding/result/code.xlsx -------------------------------------------------------------------------------- /exp/coding/result/freq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/coding/result/freq.csv -------------------------------------------------------------------------------- /exp/d1_description.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/d1_description.csv -------------------------------------------------------------------------------- /exp/d2_utterance.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/d2_utterance.csv -------------------------------------------------------------------------------- /exp/d2_utterance/d2_5metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/d2_utterance/d2_5metric.py -------------------------------------------------------------------------------- /exp/d2_utterance/data/cars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/d2_utterance/data/cars.csv -------------------------------------------------------------------------------- /exp/d3_question.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/d3_question.csv -------------------------------------------------------------------------------- /exp/d3_question/d3_4metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/d3_question/d3_4metric.py -------------------------------------------------------------------------------- /exp/finetuning/api_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/finetuning/api_manage.py -------------------------------------------------------------------------------- /exp/finetuning/.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | result/ -------------------------------------------------------------------------------- /exp/finetuning/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/finetuning/preprocess.py -------------------------------------------------------------------------------- /exp/finetuning/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/finetuning/test.py -------------------------------------------------------------------------------- /exp/finetuning/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/finetuning/train.py -------------------------------------------------------------------------------- /exp/gold/exp_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/gold/exp_metric.py -------------------------------------------------------------------------------- /exp/gold/exp_metric_org.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/gold/exp_metric_org.py -------------------------------------------------------------------------------- /exp/gold/exp_paraphrase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/gold/exp_paraphrase.py -------------------------------------------------------------------------------- /exp/gold/result/gold.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/exp/gold/result/gold.csv -------------------------------------------------------------------------------- /framework/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/preprocess.py -------------------------------------------------------------------------------- /framework/result/task1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/result/task1.csv -------------------------------------------------------------------------------- /framework/result/task1_L1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/result/task1_L1.csv -------------------------------------------------------------------------------- /framework/result/task1_L23.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/result/task1_L23.csv -------------------------------------------------------------------------------- /framework/result/task2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/result/task2.csv -------------------------------------------------------------------------------- /framework/result/task3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/result/task3.csv -------------------------------------------------------------------------------- /framework/task1_L1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/task1_L1.py -------------------------------------------------------------------------------- /framework/task1_L2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/task1_L2.py -------------------------------------------------------------------------------- /framework/task2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/task2.py -------------------------------------------------------------------------------- /framework/task3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/task3.py -------------------------------------------------------------------------------- /framework/task4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/task4.py -------------------------------------------------------------------------------- /framework/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework/utils.py -------------------------------------------------------------------------------- /framework_sample/task1_L1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task1_L1.py -------------------------------------------------------------------------------- /framework_sample/task1_L2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task1_L2.py -------------------------------------------------------------------------------- /framework_sample/task2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task2.py -------------------------------------------------------------------------------- /framework_sample/task3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task3.py -------------------------------------------------------------------------------- /framework_sample/task4_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task4_1.py -------------------------------------------------------------------------------- /framework_sample/task4_all1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task4_all1.py -------------------------------------------------------------------------------- /framework_sample/task4_all2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/framework_sample/task4_all2.py -------------------------------------------------------------------------------- /process/htmls/p4_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/htmls/p4_make_html.py -------------------------------------------------------------------------------- /process/js/p0_1github_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/js/p0_1github_crawl.py -------------------------------------------------------------------------------- /process/js/p0_2github_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/js/p0_2github_merge.py -------------------------------------------------------------------------------- /process/js/p0_3get_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/js/p0_3get_license.py -------------------------------------------------------------------------------- /process/js/p4_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/js/p4_make_html.py -------------------------------------------------------------------------------- /process/v4/v4_p0_4save_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v4/v4_p0_4save_json.py -------------------------------------------------------------------------------- /process/v4/v4_p11_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v4/v4_p11_make_html.py -------------------------------------------------------------------------------- /process/v4/v4_p4_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v4/v4_p4_make_html.py -------------------------------------------------------------------------------- /process/v4/v4_p7_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v4/v4_p7_make_html.py -------------------------------------------------------------------------------- /process/v4/v4_p9_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v4/v4_p9_make_html.py -------------------------------------------------------------------------------- /process/v5/v5_p4_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v5/v5_p4_make_html.py -------------------------------------------------------------------------------- /process/v5/v5_p7_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v5/v5_p7_analyze.py -------------------------------------------------------------------------------- /process/v5/v5_p8_complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v5/v5_p8_complexity.py -------------------------------------------------------------------------------- /process/v6/p10_chart_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p10_chart_level.py -------------------------------------------------------------------------------- /process/v6/p12_composite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p12_composite.py -------------------------------------------------------------------------------- /process/v6/p13_similarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p13_similarity.py -------------------------------------------------------------------------------- /process/v6/p1_1move_vlv2v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p1_1move_vlv2v3.py -------------------------------------------------------------------------------- /process/v6/p1_2move_htmls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p1_2move_htmls.py -------------------------------------------------------------------------------- /process/v6/p1_4move_vl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p1_4move_vl.py -------------------------------------------------------------------------------- /process/v6/p1_5move_js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p1_5move_js.py -------------------------------------------------------------------------------- /process/v6/p4_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p4_make_html.py -------------------------------------------------------------------------------- /process/v6/p7_analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p7_analyze.py -------------------------------------------------------------------------------- /process/v6/p8_complexity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p8_complexity.py -------------------------------------------------------------------------------- /process/v6/p9_complexity2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/p9_complexity2.py -------------------------------------------------------------------------------- /process/v6/sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/v6/sort.py -------------------------------------------------------------------------------- /process/vl/p0_1github_crawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/vl/p0_1github_crawl.py -------------------------------------------------------------------------------- /process/vl/p0_2github_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/vl/p0_2github_merge.py -------------------------------------------------------------------------------- /process/vl/p0_3get_license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/vl/p0_3get_license.py -------------------------------------------------------------------------------- /process/vl/p0_4save_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/vl/p0_4save_json.py -------------------------------------------------------------------------------- /process/vl/p4_make_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/process/vl/p4_make_html.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyungkwonko/chart-llm/HEAD/requirements.txt --------------------------------------------------------------------------------